0

在我的活动中,我有一个定制的控件。在 onCreate 中,我像往常一样膨胀活动的视图:

setContentView(R.layout.image_viewer);

这是我的xml:

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

    <MyCustomImageView
    android:id="@+id/tivImage"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

</LinearLayout>

这是 MyCustomTextView 的一段简化代码:

 public class MyCustomImageView extends ImageView
 {
  Context context;

  public MyCustomImageView(Context context)
  {
    super(context);
    sharedConstructing(context);
  }

  public MyCustomImageView(Context context, AttributeSet attrs)
  {
    super(context, attrs);
    sharedConstructing(context);
  }
 }

生成的异常如下:

android.view.InflateException: Binary XML file line #7: Error inflating class MyCustomImageView
4

2 回答 2

4

您需要添加包名称:

 <com.my.package.MyCustomTextView
    android:id="@+id/tivImage"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />
于 2013-07-26T08:57:12.247 回答
0

您必须创建调用超类构造函数的构造函数,因为它们将被充气机调用:

public class MyView extends View {

    public MyView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        // TODO Auto-generated constructor stub
    }

    public MyView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
    }

    public MyView(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
    }

}

你必须把完整的包名放在你的 XML 中:

<com.mypackagename.MyView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />
于 2013-07-26T08:57:51.367 回答