2011-08-13 36 views
3

我想用圖標實現自定義首選項,並且能夠在視圖的XML規範中定義圖標的來源。如果我做在Android中檢索視圖的XML屬性

<com.example.MyIconPreference 
    android:src="@drawable/icon1" 
    android:key="test_key" 
    android:title="@string/pref_title" 
    android:summary="@string/pref_summary" 
></com.example.MyIconPreference> 

如何以編程方式檢索drawable資源或標識符?

感謝

回答

0

這是相同的,你如何定義你的自定義View和自定義View屬性。機制是一樣的。

你可以在這裏找到一個View的例子:Creating Custom Views