android - 为什么ImageView画布是黑色的?

时间:2011-05-11 20:40:09

标签: android canvas imageview

我是Android图形的新手,所以坚持你的帽子! 无论我做什么,屏幕都是黑色的。 我绘制一个圆圈,我绘制位图和注意节目。 这是xml,代码和显示我的屏幕的图片。 我想我必须设置ImageView的大小,这就是为什么它是黑色??!

R.layout.main1

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

<com.hasse.move.DrawView 
    android:id="@+id/mainView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:background="#00FF00"
    android:adjustViewBounds="true"

  />
   <RelativeLayout 
    android:id="@+id/InnerRelativeLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" >
   <EditText 
    android:id="@+id/edittextaddtext"
    android:layout_width="fill_parent"
    android:layout_toLeftOf="@+id/btnsave"
    android:layout_height="wrap_content"
    android:text="wrap"
   />
   <Button 
    android:id="@+id/btnsave" 
    android:layout_alignParentRight="true" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="save"
   />
   </RelativeLayout>
 </RelativeLayout>

DrawView类

public class DrawView extends ImageView {
private Context ctx;
public DrawView(Context context, AttributeSet atts) {
    super(context, atts);
    this.ctx = context;
} 
@Override 
protected void onDraw(Canvas canvas) {
    String filePath = Environment.getExternalStorageDirectory().toString() + "/PTPPservice/163693fe-7c48-4568-a082-00047123b9f1.2.IMAG2200.jpg";
    BitmapFactory.Options options = new BitmapFactory.Options();
    options.inSampleSize = 2;

    Bitmap bitmap = BitmapFactory.decodeFile(filePath,options);     

    canvas.drawBitmap(bitmap, 10,10, null);
    canvas.drawCircle(10,10,10,null);
}

}

主要活动

public class Main extends Activity {

DrawView theImage;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    // draw the view
    setContentView(R.layout.main1);

    theImage = (DrawView) findViewById(R.id.mainView);
    //do stuff
}
@Override
public void onConfigurationChanged(Configuration newConfig)
{
//  Toast.makeText(this, "onConfigurationChanged",Toast.LENGTH_LONG).show();
    super.onConfigurationChanged(newConfig);
}

}

图像

enter image description here

1 个答案:

答案 0 :(得分:2)

查看您的代码,您不太可能将圆圈视为您尝试使用空绘制对象绘制它。要测试代码,请确保使用颜色与背景颜色形成对比的Paint对象。其次,我会称之为超级对象方法,例如

super.onDraw(canvas);

我不是100%确定使用空Paint对象绘制位图。 另外,检查布局文件中DrawView类(com.hasse.move.DrawView)的包名称是否与实际的DrawView类匹配。