如何为以下XML找到ViewById?
<ListView android:id="@android:id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
我需要它来设置列表适配器。
答案 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
等方式访问...