http://img861.imageshack.us/img861/7999/64339196.png
我不明白问题是什么...
我创建了这么多 java 和 xml 文件,但从未遇到过这个问题......
在 DDMS 中有以下错误....
http://img822.imageshack.us/img822/352/83236788.png
谢谢...
http://img861.imageshack.us/img861/7999/64339196.png
我不明白问题是什么...
我创建了这么多 java 和 xml 文件,但从未遇到过这个问题......
在 DDMS 中有以下错误....
http://img822.imageshack.us/img822/352/83236788.png
谢谢...
如果你有Listview
布局改变它......
<ListView android:id="@android:id/list"....></ListView>
如果不,
比extends Activity
代替
extends ListActivity
在您提供的图像中没有 listView 但在某些 xml 文件中您有 listview 只需更改该 listView 的 id。
在 XML 文件中没有列表视图。只需将扩展 ListActivity 更改为扩展 Activity。
ListActivity的 XML 布局文件必须包含一个 ListView
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
当我创建我的类时,我将使用它来列出项目......也就是说,我准备该类为 ListView 工作......
所以我在我的班级中扩展了ListView ..,在清单文件中,班级战争被重新定义为ListActivity ..
但是后来,我改变了我的层次结构,并且我不在同一个类中使用 listView ...但我忘记扩展 Activity 而不是 ListActivity ..
这造成了一个问题......
感谢帮助....