1
我有一個名爲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>
你有什麼建議嗎?