关于 surfaceview 背景覆盖的问题
本人开发过程中,发现出了黑色,不能设置其他颜色,如果设置了,就画不出东西了,后来网上终于找到了,我是在xml中设置的背景,我想在class中设置应该也可以
xml
<SurfaceView android:id="@+id/SurfaceView01" android:layout_height="fill_parent" android:layout_width="fill_parent" android:background="#FFFFFF" ></SurfaceView>
class中需要加入的东西是
//画板和画笔 sfv = (SurfaceView) this.findViewById(R.id.SurfaceView01); sfv.setOnTouchListener(new TouchEvent()); mPaint = new Paint(); mPaint.setColor(Color.BLACK);// 画笔为绿色 mPaint.setStrokeWidth(1);// 设置画笔粗细 // 设置样式-填充 mPaint.setStyle(Style.FILL); sfv.setZOrderOnTop(true); // 这句不能少 sfv.getHolder().setFormat(PixelFormat.TRANSPARENT);
相关推荐
hqulyc 2020-05-05
Nostalgiachild 2020-11-13
韩伟佳 2020-10-09
wuleihenbang 2020-09-16
zzqLivecn 2020-07-09
chenjinlong 2020-06-10
yinbaoshiguang 2020-06-09
sgafdsg 2020-06-04
ustcrding 2020-06-03
chenjinlong 2020-06-03
AndroidGA 2020-06-01
安辉 2020-05-27
绿豆饼 2020-05-26
CNETNews 2020-05-26
xilove0 2020-05-12
绿豆饼 2020-05-12
ChainDestiny 2020-05-07
doomvsjing 2020-05-07
lyccsu 2020-04-30