尝试使用我的数据库查询结果设置列表视图。
无论如何,我从我的列表视图中收到了一个奇怪的 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);