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>

解決 :

編集:プロジェクトのクリーニングが役立ちました!

4

1 に答える 1

1

使用するview.setTag(objTextview);

TextView colorBar = (TextView)view.getTag();
于 2012-04-10T08:44:12.930 に答える