我收到以下错误(代码中的第 19 行是 //XXX):
04-10 10:35:08.301: E/AndroidRuntime(12417): java.lang.ClassCastException: android.widget。TextView 无法转换为 android.widget.CheckBox 04-10 10:35:08.301: E/AndroidRuntime(12417): 在 ms.jung.andorid.caldavtodo.CalDavToDoViewBinder.setViewValue(CalDavToDoViewBinder.java:19)
我的代码:
class CalDavToDoViewBinder implements SimpleCursorAdapter.ViewBinder {
public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
int viewId = view.getId();
if(viewId == R.id.checkBox) {
CheckBox cb = (CheckBox) view; //XXX
if(cursor.getInt(cursor.getColumnIndexOrThrow(CalDavToDoProvider.STATE)) == 1)
{
cb.setChecked(true);
}
else
{
cb.setChecked(false);
}
return true;
}
else if(viewId == R.id.colorBar)
{
int color = cursor.getInt(cursor.getColumnIndexOrThrow(CalDavToDoProvider.COLOR));
TextView colorBar = (TextView)view;
colorBar.setBackgroundColor(color);
return true;
}
return false;
}
}
我很困惑,因为R.id.checkBox
绝对是一个CheckBox
.
编辑:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rowLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="0dp" >
<TextView
android:id="@+id/colorBar"
android:layout_width="10dp"
android:layout_height="fill_parent"
android:background="@color/pink"
android:text="@string/colorBarDefault" >
</TextView>
<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:paddingLeft="45dp"
android:text="@string/checkBoxDefault" >
</CheckBox>
<TextView
android:id="@+id/sqlID"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sqlIDDefault"
android:visibility="gone" >
</TextView>
</LinearLayout>
解决方案 :
编辑:清理项目有帮助!