本文介绍了在Android的风格设置ImageView的图片src的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要我的风格中设置的ImageView SRC,但我不能找到任何人的一个很好的例子,这样做的,当我尝试低于code,它崩溃的应用程序。
I need to set the ImageView's src within my style, but I cant find a good example of anyone doing this and when I try the below code, it crashes the app.
<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>
这应该很简单。是什么给了?
This should be simple. What gives?
推荐答案
您的XML是不正确:
<ImageView style="@style/TitleBarImage" />
和styles.xml:
And 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>
这篇关于在Android的风格设置ImageView的图片src的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!