Id的列表视图在android中

时间:2013-01-24 08:52:31

标签: android listview

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

这是我的应用程序中列表视图的代码。我想在整个项目中更改列表视图的ID。我怎样才能做到这一点!我从网上选择了listview上的演示项目。 现在我想改变listview的id。当我更改listview的id时,它会出错。我做了所有的研究,但我找不到解决方案。 所以帮助我。

1 个答案:

答案 0 :(得分:1)

如下所示更改ListView标记以避免错误。

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