关于 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);

相关推荐