9

我知道有类似的问题,但即使我看了这些问题,我也无法让它发挥作用。错误信息是:

java.lang.RuntimeException:您的内容必须有一个 id 属性为 'android.R.id.list' 的 ListView

. 我试图将 id 更改为列表。在另一个。这是代码的样子:

 public class committeeFragment extends SherlockListFragment {

    private CommitteeAdapter adapter;

    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        adapter = new CommitteeAdapter(getActivity().getApplicationContext());
        setListAdapter(adapter);
    }

    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        return inflater.inflate(R.layout.fragment_committee, container, false);
    }

    public void
    refreshList() {
        adapter.updateDataSet();
        adapter.notifyDataSetChanged();
    }
}

它使用以下适配器:

    public class CommitteeAdapter extends BaseAdapter {
    private
    ArrayList<StudentCommittee> committeeList;
    private Context context;

    public CommitteeAdapter(Context context) {
        this.context = context;
        CommitteeDatabaseAdapter dbAdapter = new CommitteeDatabaseAdapter(context);
        committeeList = dbAdapter.readAllCommittees();
    }

    public void updateDataSet() {
        CommitteeDatabaseAdapter dbAdapter = new CommitteeDatabaseAdapter(context);
        committeeList = dbAdapter.readAllCommittees();
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater vi = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        StudentCommittee committee = committeeList.get(position);

        View v = vi.inflate(R.layout.list_item_committee, null);
        TextView sectionName = (TextView) v.findViewById(R.id.committee_namn);

        sectionName.setText(committee.getName());
        return v;
    }

    @Override
    public int getCount() {
        return committeeList.size();
    }

    @Override
    public StudentCommittee getItem(int position) {
        return committeeList.get(position);
    }

    @Override
    public long getItemId(int position) {
        return position;
    }
}

这是指定列表(fragment_committee)的 xml 文件:

<?xml version="1.0" encoding="utf-8"?> <LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:orientation="vertical"
     android:tag="@string/tag_fragment_committee"
     android:background="@color/white" >

     <TextView
         style="@style/AppsolutText.Headline"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:text="Festerier" />

      <View
         android:layout_width="fill_parent"
         android:layout_height="2dp" 
         android:background="@drawable/divider_sliding_menu_item"/>

     <ListView
         android:id="@+id/list"
         android:layout_width="match_parent"
         android:layout_height="wrap_content" />

     <TextView 
         style="@style/AppsolutText.Normal"
         android:id="@android:id/empty"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:text="Uppdatera för att se en lista över festerier och fadderier. Kräver internetanslutning."/>

 </LinearLayout>

这是列表项的 xml:

 <?xml version="1.0" encoding="utf-8"?> <LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:orientation="horizontal" >

     <ImageView
         android:id="@+id/committee_symbol"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_weight="0"
         android:paddingBottom="10dp"
         android:paddingRight="10dp"
         android:paddingTop="10dp" />

     <TextView
         android:id="@+id/committee_namn"
         style="@style/AppsolutText.ListHeader"
         android:layout_width="0dp"
         android:layout_height="wrap_content"
         android:layout_weight="1" />

 </LinearLayout>

我希望你能找出问题所在。我在项目中的另一个 xml 文件中有另一个具有相同 ID(列表)的列表视图。我不知道这是否有问题。请帮我解决问题。

4

4 回答 4

23

问题在这里:

android:id="@+id/list"

您正在为您的 ListView 添加一个新 ID,但 ListFragment 需要一个默认的 Android ListView Id

将您的 ListView Id 更改为:

<ListView
   android:id="@id/android:list"
   android:layout_width="match_parent"
   android:layout_height="wrap_content" />
于 2013-07-28T10:10:49.463 回答
5

将您ListView的 XML 更改为具有以下 ID:

<ListView 
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

这是使用ListFragment/SherlockListFragment

http://developer.android.com/reference/android/app/ListFragment.html

ListFragment 具有由单个列表视图组成的默认布局。但是,如果您愿意,您可以通过从onCreateView(LayoutInflater, ViewGroup, Bundle). 为此,您的视图层次结构必须包含一个 ID 为“@android:id/list”的 ListView 对象(或者list如果它在代码中)

于 2013-07-28T10:11:07.007 回答
0

我决定停止使用 actionbarsherlock 并使用支持库来获取 Android 2.1 及更高版本中的操作栏。这样做之后,我得到了“java.lang.RuntimeException:您的内容必须有一个 id 属性为 'android.R.id.list' 的 ListView”。我为解决这个问题所做的是

阅读此http://developer.android.com/reference/android/app/ListFragment.html#q=fragment

然后更改我的片段布局文件

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/item_detail"
    style="?android:attr/textAppearanceLarge"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="16dp"
    android:textIsSelectable="true"
    tools:context=".ItemDetailFragment" />

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:tools="http://schemas.android.com/tools"
     android:orientation="vertical"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:paddingLeft="8dp"
     android:paddingRight="8dp"
     tools:context=".ItemDetailFragment">

 <ListView android:id="@id/android:list"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:background="#00FF00"
           android:layout_weight="1"
           android:drawSelectorOnTop="false"/>

 <TextView android:id="@+id/item_detail"
        style="?android:attr/textAppearanceLarge"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="16dp"
        android:textIsSelectable="true"/>

 <TextView android:id="@id/android:empty"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:background="#FF0000"
           android:text="No data"/>

...瞧,缺少 android.R.id.list 的 RunTimeException 消失了!当然,我需要编辑我的新布局并正确修复它,但这里的关键问题是我在其 onCreateView 方法中覆盖了片段布局。ActionBarSherlock 对此没有问题,但是使用 Android 支持库,如果您这样做,您的 XML 布局中必须有一个 ListView,其中 android:id="@id/android:list" 如信息中所述链接到上面。

希望这会有所帮助(来自 Android 应用开发中的新手)!

于 2013-10-01T18:57:21.613 回答
0

您可以尝试清理您的项目。如果有任何xml相关的错误,您可以找到它。然后您可以更改您的列表 id 。查找列表 ID 存在于您的 gen 文件夹 R.java 类中。

于 2013-07-28T10:13:52.470 回答