1

おかしいです; 何らかの理由で、GridViewのサブクラスを適切にキャストするのに苦労しています。Caused by: java.lang.ClassCastException: android.widget.GridView cannot be cast to com.dobydigital.dobixchange.CustomGridViewCustomGridViewをキャストしようとすると取得します。これが私のコードです

CustomGridView.java

import android.widget.GridView;
public class CustomGridView extends GridView {

FileBrowserFragment.java

//# Other stuff omitted for brevity
private CustomGridView gridView;
public class FileBrowserFragment extends Fragment {
//# Stuff
}
//# .........
@Override
public void onActivityCreated(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onActivityCreated(savedInstanceState);
    //# This cast here throws the exception
    gridView = (CustomGridView) getView().findViewById(R.id.grid_view);

file_browser.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/root_node"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

<com.dobydigital.dobixchange.CustomGridView
    android:id="@+id/grid_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:numColumns="3"
    android:layout_weight="80" >
    <!-- Preview: listitem=@layout/image_tile -->
</com.dobydigital.dobixchange.CustomGridView>



<Button
    android:id="@+id/btn_confirm"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:text="Select this Directory" />

</LinearLayout>

何が起こっているのか理解できません。これまで、レイアウトのサブクラス化で問題が発生したことはありません。

4

2 に答える 2

0

質問のコメントから:誤って膨らませて間違ったレイアウトを返しますonCreateView():)

于 2012-04-16T22:50:49.740 に答える
0
gridView = (CustomGridView) findViewById(R.id.grid_view);

getView() を取り除く

于 2012-04-16T20:35:46.730 に答える