3

我没有使用 ListActivity,因为我想扩展 FragmentActivity。相反,我正在尝试使用:

ListView lv = (ListView) findViewById(R.id.mainListView);

不幸的是 lv 为空。

在我的 xml 中,我有:

 <ListView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainListView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

我也尝试过为列表视图使用不同的 android id,例如在使用 ListActivity 时必须使用的那个,但它始终为 Null。

编辑:我试图在调用 setContentView 之前调用 findViewById。调用 setContentView 首先修复它。

4

4 回答 4

3

正如 JRaymond 前段时间在评论中提到的,我需要在使用 findViewById 之前调用 setContentView。

于 2012-10-04T16:35:33.710 回答
2

你应该放在setContentView上面findViewById

于 2013-08-27T09:49:02.053 回答
1

尝试:

ListView lv = (ListView) view.findViewById(R.id.mainListView);
于 2012-09-18T00:17:10.100 回答
0

这可能会帮助你

 xmlns:android="http://schemas.android.com/apk/res/android"

将其从 xml 中的 Listview 中删除并使用

<ListView
    android:id="@+id/mainListView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>
于 2012-09-18T06:18:59.010 回答