未找到列表ID:android:list

时间:2010-11-04 18:26:35

标签: android listview

我试图找到listview的id,但它只是这样打字不起作用: this.view =(ListView)findViewById(R.id.list); R.id.list - >不能工作,因为它无法找到id 我使用自己的自定义列表。

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

1 个答案:

答案 0 :(得分:12)

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

获得它:

findViewById(android.R.id.list);