ListFragment:运行时错误“您的内容必须有一个 ListView,其 id 属性为 'android.R.list'

ListFragment: Runtime error "Your content must have a ListView whose id attribute is 'android.R.list'

我有一个列表片段class:

public class activityfeedScreen extends ListFragment implements OnItemClickListener {

private ListView activityfeed_feedList_listView;
private ActivityFeedBaseAdapter adapter;

public static final activityfeedScreen newInstance()
{
    activityfeedScreen fragment = new activityfeedScreen();
    Bundle bdl = new Bundle(1);
    fragment.setArguments(bdl);
    return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View v = inflater.inflate(R.layout.activity_activityfeed_screen, container, false);

    activityfeed_feedList_listView = (ListView)v.findViewById(R.id.activityfeed_feedList_listView);
    activityfeed_feedList_listView.setAdapter(adapter);
    activityfeed_feedList_listView.setOnItemClickListener(this);

    return v;
}
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
}
public void onItemClick(AdapterView<?> activityfeedlistview, View view, int position, long itemID) {
    Intent intent_activityfeed_showitemdescription = new Intent(view.getContext(), activityfeedItemScreen.class);
    startActivity(intent_activityfeed_showitemdescription);
}
}

在这个 class 中,我在以下行收到错误:

    activityfeed_feedList_listView = (ListView)v.findViewById(R.id.activityfeed_feedList_listView);  

我最初认为这是一个问题,因为 getView() 为空,所以我将其从 onCreate 方法移至 onCreateView() 方法。但是我收到了标题中所述的运行时错误。 这是我的布局文件:

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

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginLeft="10dp">

    <ImageView
        android:id="@+id/activityfeed_profilePicture_imageView"
        android:layout_width="75dp"
        android:layout_height="75dp"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"
        android:src="@drawable/default_profile"/>

</RelativeLayout>
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#B9B9B9"
    android:layout_marginTop="20dp">

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

        </ListView>
    </RelativeLayout>

我知道我必须将列表视图 ID 更改为

android:id="@android:id/list"

但我不确定如何在我的 onCreateView 方法中调用它。

感谢您的帮助!

onCreateView() 中,您需要提供具有 ListView 且 ID 为 @android:id/list 的布局。

ListFragment 提供了一些辅助方法(例如 setListAdapter()),这些方法要求布局具有具有该 ID 的 ListView,以便它可以引用它并为您设置适配器。

是的。首先,您必须像这样更改 ListView 的 ID:

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

在您的 onCreateView 中,您可以通过 android.R.id.list 引用 ID。这是因为 Android 内置资源驻留在 android.R 中。您还可以在那里找到可绘制对象、样式等(您可以用类似的方式称呼它们)。

考虑到上述情况,您的 onCreateView 方法应如下所示:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View v = inflater.inflate(R.layout.activity_activityfeed_screen, container, false);

    activityfeed_feedList_listView = (ListView)v.findViewById(android.R.id.list);
    activityfeed_feedList_listView.setAdapter(adapter);
    activityfeed_feedList_listView.setOnItemClickListener(this);

    return v;
}

就这些了;)