使用属性和主题更改图像资源
我不知道如何在代码中更改 ImageButton 的图像资源。我在themes.xml中定义了以下主题:
<resources>
<style name="MMTheme.Blue">
<item name="playButtonImg">@drawable/play_button</item>
<item name="pauseButtonImg">@drawable/pause_button</item>
</style>
</resources>
属性在attrs.xml中定义:
<resources>
<attr name="pauseButtonImg" format="integer"/>
<attr name="playButtonImg" format="integer"/>
</resources>
现在我想更改ImageButton的图像资源。我可以通过以下方式更改它:
playButton.setImageResource(R.drawable.play_button);
但我想使用主题。如何使用 playByttonImg 属性更改它,以便我可以为不同的主题使用不同的图像?
I can't figure out how to change image resource of ImageButton in code. I have defined following theme in themes.xml:
<resources>
<style name="MMTheme.Blue">
<item name="playButtonImg">@drawable/play_button</item>
<item name="pauseButtonImg">@drawable/pause_button</item>
</style>
</resources>
Attributes are defined in attrs.xml:
<resources>
<attr name="pauseButtonImg" format="integer"/>
<attr name="playButtonImg" format="integer"/>
</resources>
Now I want to change the image resource of ImageButton. I can change it by:
playButton.setImageResource(R.drawable.play_button);
But I want use themes. How to change it using the playByttonImg attribute so I can use different images for different themes ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在我有了原始问题的解决方案:
当我调用时,它会返回一个可绘制的 id,例如:
getStyledDrawableId(getContext(), R.attr.playButtonImg)
。上下文必须具有选定的主题集。属性应更改为参考格式:
Now I have solution for the original question:
It returns me a drawable id when I call for example:
getStyledDrawableId(getContext(), R.attr.playButtonImg)
. Context HAS TO have the selected theme set.Attributes should be changed to reference format:
我仍然不知道如何以编程方式访问主题中的样式,因此我不得不使用带有两个单独按钮的技巧。每个按钮都有自己的样式,我不是更改一个按钮的图像/样式,而是设置两个样式按钮的可见性。
I still don't know how to access the styles from themes programaticaly, so I had to use a trick with two separate buttons. Each has own style and instead of changing image/style of one button, I am setting the visibility of two styled buttons.