我想用圖標實現自定義首選項,並且能夠在視圖的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資源或標識符?
感謝