我有一个小问题,我找不到我正在犯的错误,这可能是非常简单的事情.
我有以下布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="10dp" >
<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:focusable="false" />
<ImageView
android:id="@+id/imgStarred"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/checkBox"
android:layout_below="@+id/checkBox"
android:layout_marginRight="4dp"
android:src="@drawable/ic_star_gray"/>
<CheckedTextView
android:id="@+id/lblTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/checkBox"
android:layout_marginLeft="10dp"
android:layout_marginTop="8dp"
android:layout_toLeftOf="@+id/imgPriority"
android:layout_toRightOf="@+id/checkBox"
android:text="CheckedTextView" />
<TextView
android:id="@+id/lblDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/lblTitle"
android:layout_below="@+id/lblTitle"
android:layout_marginLeft="10dp"
android:layout_toRightOf="@+id/checkBox"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall" />
<ImageView
android:id="@+id/imgPriority"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:src="@drawable/ic_priority_5" />
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)
当我尝试使用findViewById从中获取视图时,我得到了ClassCast异常
11-23 10:12:07.680: E/AndroidRuntime(5965): FATAL EXCEPTION: main
11-23 10:12:07.680: E/AndroidRuntime(5965): java.lang.ClassCastException: android.widget.ImageView
11-23 10:12:07.680: E/AndroidRuntime(5965): at com.bilobait.taskbox.task.TaskBoxTaskList$TaskView.<init>(TaskBoxTaskList.java:459)
11-23 10:12:07.680: E/AndroidRuntime(5965): …Run Code Online (Sandbox Code Playgroud)