您好我正在制作一个项目并在其中使用了ListView。我给它的代码是
<ListView android:id="@android:id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
</ListView>
我需要使用上面的列表,我无法用
来引用它findViewById(@android:id/android/list);
即使“R.id”也无效。
我应该使用OnClickListener()。
提前谢谢你......
答案 0 :(得分:4)
正确的方法是:
getViewById(android.R.id.list);
答案 1 :(得分:1)
试试这个很有用
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</ListView>
和
findViewById(R.id.list);