android2.1 ListView参考

时间:2012-02-04 10:56:51

标签: android android-listview

您好我正在制作一个项目并在其中使用了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()。

提前谢谢你......

2 个答案:

答案 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);