0

尝试使用我的数据库查询结果设置列表视图。

无论如何,我从我的列表视图中收到了一个奇怪的 XML 参考 ID 错误。任何人都可以在这里看到这个问题吗?我猜是导致问题的“@id”引用?

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ListView
    android:id="@+id/contentList"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

</LinearLayout>

还有我的java类:

错误在“R.id.conactList”上。

ListView listContent = (ListView)findViewById(R.id.contentList);
4

1 回答 1

0

这对我来说看起来不错。您可以更改></ListView>/>稍微清理 xml。尝试清理您的项目以确保您的 R 文件得到更新。有日志可以发吗?究竟是什么错误?

于 2013-01-10T22:32:58.367 回答