我知道有一些类似的问题,但即使我看着这些问题,我也无法使它成功。错误消息是:
java.lang.RuntimeException:您的内容必须具有其ID为其的ListView 属性是'android.R.id.list'
。我试图将id更改为list。在另一个。这就是代码的样子:
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>
我希望你能弄明白什么是错的。我有另一个listview在项目中的另一个xml文件中具有相同的id(列表)。我不知道这是不是一个问题。请帮我解决问题。
答案 0 :(得分: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" />
答案 1 :(得分:5)
将XML中的ListView
更改为具有以下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为#34; @android:id / list&#34;的ListView对象。 (或list
如果它在代码中)
答案 2 :(得分:0)
您可以尝试清理项目。如果有任何xml相关错误,你可以找到它。然后,您可以更改列表ID。查找列表ID存在于您的gen文件夹R.java类中。
答案 3 :(得分:0)
我决定停止使用actionbarsherlock并使用支持库来获取Android 2.1及更高版本中的操作栏。执行此操作后,我得到了“java.lang.RuntimeException:您的内容必须有一个ListView,其id属性为'android.R.id.list'”。我为解决这个问题所采取的措施是
阅读此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 DID没有问题,但是对于Android支持库,如果你这样做,你必须在你的XML布局中有一个ListView,其中android:id =“@ id / android:list”如信息中所述与上述相关联。
希望这会有所帮助(来自Android app dev中的全新内容)!