在Android資源xml中引用主題的屬性值時使用問號(?)而不是(@)。如下面的ListViewCustomStyle:Android訪問屬性參考
<ListView
android:id="@+id/MainScreenListView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="?ListViewCustomStyle"/>
如何在代碼中使用ListViewCustomStyle的值?如果我試試它的正常方式,即
com.myapp.R.attr.ListViewCustomStyle
然後代碼崩潰。有沒有特別的方法可以訪問它,因爲它是對一個項目的引用而不是實際的項目?
Woops ListRowCustomStyle是一個錯字;我已經修復 – 2011-01-22 20:09:31