2011-07-06 185 views
12

我需要在我的樣式中設置ImageView的src,但我無法找到任何人做這個的好例子,當我嘗試下面的代碼時,它崩潰了應用程序。Android設置ImageView圖像src的樣式

<ImageView android:src="@style/TitleBarImage"></ImageView> 

<style name="TitleBarImage">  
    <item name="android:layout_width">wrap_content</item>  
    <item name="android:layout_height">wrap_content</item>  
    <item name="android:src">@drawable/whiteButton</item> 
</style> 

這應該很簡單。是什麼賦予了?

回答

15

你的XML是不正確的:

<ImageView style="@style/TitleBarImage" /> 

而且styles.xml:

<style name="TitleBarImage">  
    <item name="android:layout_width">wrap_content</item>  
    <item name="android:layout_height">wrap_content</item>  
    <item name="android:src">@drawable/whiteButton</item> 
</style> 
+0