在Android中查找ListView

时间:2011-10-05 17:58:09

标签: android android-layout

如何为以下XML找到ViewById?

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

我需要它来设置列表适配器。

3 个答案:

答案 0 :(得分:1)

您的XML必须如下所示:

<ListView android:id="@+id/ListView_Name"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
你的代码中的

ListView listview = (ListView) findViewById(R.id.ListView_Name);

答案 1 :(得分:0)

此基本示例向您展示如何将ArrayAdapter与ListView一起使用。你真的应该真正搞乱ListView本身,只是放入它的元素。

http://developer.android.com/resources/tutorials/views/hello-listview.html

答案 2 :(得分:0)

findViewById(android.R.id.list)

前缀为android:的ID都可以在android.R.id下访问。同样@android:drawable可以android.R.drawable等方式访问...