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>

何か提案はありますか?

4

2 に答える 2

1

レイアウトで<com.your.package.CropImageView />の代わりにを使用してみてください。<ImageView />

于 2012-06-14T17:57:08.703 に答える
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"/>
于 2012-06-14T17:58:16.863 に答える