如何查找自定义扩展视图的视图

时间:2012-06-14 17:52:40

标签: android classcastexception

我有一个名为CropImageView的类,它从ImageView扩展而来。但是下面的陈述使castException

CropImageView image = (CropImageView) findViewById(R.id.image);

这是xml文件:

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

    <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="horizontal">

        <ImageView  android:id="@+id/image"
                android:background="#55000000"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_x="0dip"
                android:layout_y="0dip"/>
    </RelativeLayout>
  </FrameLayout>
你有什么建议吗?

2 个答案:

答案 0 :(得分:1)

尝试在布局中使用<com.your.package.CropImageView />而不是<ImageView />

答案 1 :(得分:1)

您应该在CropImageView中使用XML规范名称。类似的东西:

<your.package.CropImageView 
    android:id="@+id/image"
    android:background="#55000000"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_x="0dip"
    android:layout_y="0dip"/>