我正在尝试将ExpandableListAdapter添加到DialogPrefence。
我的布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/channels_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/channelsProgress"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone" >
<ProgressBar
android:id="@+id/pbChannelsProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:descendantFocusability="beforeDescendants" >
</ProgressBar>
</LinearLayout>
<ExpandableListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</ExpandableListView>
</LinearLayout>这就是我用ListView实现的方法
HiddenChannelsListAdapter adapter = new HiddenChannelsListAdapter(ctx, tree, subscribed_channelsList);
ListView lv = (ListView) vw.findViewById(R.id.list);
lv.setAdapter(adapter);我必须如何使用ExpandableListAdapter来完成此操作?
ExampleReallySimpleExpandableListAdapter adapter = new ExampleReallySimpleExpandableListAdapter(ctx, groupData, childData);
AbsListView lv = (AbsListView) vw.findViewById(R.id.list);
lv.setAdapter(adapter);这将导致:
03-25 14:24:23.780: E/AndroidRuntime(22187): FATAL EXCEPTION: main
03-25 14:24:23.780: E/AndroidRuntime(22187): java.lang.ClassCastException: com.example.tvrplayer.ExampleReallySimpleExpandableListAdapter cannot be cast to android.widget.ListAdapter发布于 2013-03-25 20:36:42
从ExpandableListView调用setAdapter(ExpandableListAdapter),而不是从AbsListView调用通用setAdapter(ListAdapter)。
也就是说,改变
AbsListView lv = (AbsListView) vw.findViewById(R.id.list);至
ExpandableListView lv = (ExpandableListView) vw.findViewById(R.id.list);https://stackoverflow.com/questions/15614957
复制相似问题