不知道我是不是太累了,无法再推理了,但是我遇到了一个令人讨厌的问题,即 ListActivity 找不到它的 ListView 资源。烦人,因为我在同一个应用程序的其他两个活动中以相同的方式实现了这一点。
很基础...
布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/backrepeat"
android:tileMode="repeat"
android:orientation="vertical">
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
活动:
setListAdapter(new ArrayAdapter<String>(this, android.R.id.list, fileList ));
我在这里搜索过,发现其他有明显错误的帖子......有人有什么想法吗?
获取资源未找到异常
09-10 14:25:40.366: E/AndroidRuntime(2392): android.content.res.Resources$NotFoundException: File from xml type layout resource ID #0x102000a
谢谢!