嘗試設置列表視圖和我的數據庫查詢的結果。XML列表視圖問題
無論如何,我從我的列表視圖中得到一個奇怪的XML refrence 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);
你丟失大量的相關信息(堆棧跟蹤,當你調用findViewById,該類從發出的呼籲,爲什麼你使用'id.contactList',而不是'id.contentList'等)但我會猜測你沒有設置你的活動的內容視圖。 – AedonEtLIRA