Ошибка приведения ViewBinder с Android 4.0
Я получаю следующую ошибку (строка 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>
РЕШЕНИЕ:
РЕДАКТИРОВАТЬ: ЧИСТКА ПРОЕКТА ПОМОГЛА!
1 ответ
Использование view.setTag(objTextview);
TextView colorBar = (TextView)view.getTag();