您的内容必须包含其属性为的ExpandableView 'android.R.list'
这是我从Logcat获取的错误消息。这让我感到困惑,因为我的XML就是这个
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ExpandableListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
答案 0 :(得分:2)
试试这个
<ExpandableListView
android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
当您定义id这样的时候@ + id / list表示您在应用程序命名空间中定义了一个id名称列表,您可以通过@id / list引用它,但是@android:id / list表示您引用到android命名空间中的id定义 该命名空间是框架的命名空间
答案 1 :(得分:1)
在您的XML中,将 android:id =“@ + id / list”添加到此 android:id =“@ android:id / list”。它会解决你的问题。
有关更多帮助,请参阅this链接。