我在寫 ListActivity 時發現一個錯誤
第一個主畫面 main.xml 依照一般的寫法不會有任何的 error
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView ~/>
<ListView ~/>
</LinearLayout>
但是,用於 ListActivity 的 list.xml 卻一直出現 "unbound prefix" 的錯誤
就連我複製 main.xml 的內容給 list.xml 依然出現
有沒有人知道錯誤到底在哪裡?