使用属性和主题更改图像资源

发布于 2024-11-19 20:05:41 字数 717 浏览 1 评论 0原文

我不知道如何在代码中更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦途 2024-11-26 20:05:41

现在我有了原始问题的解决方案:

public static int getStyledDrawableId(Context context, int attribute)
{
    TypedArray a = context.getTheme().obtainStyledAttributes(new int[] { attribute });
    int id = a.getResourceId(0, -1);
    return id;
}

当我调用时,它会返回一个可绘制的 id,例如: getStyledDrawableId(getContext(), R.attr.playButtonImg) 。上下文必须具有选定的主题集。

属性应更改为参考格式:

<resources>
    <attr name="pauseButtonImg" format="reference"/>
    <attr name="playButtonImg" format="reference"/>
</resources>

Now I have solution for the original question:

public static int getStyledDrawableId(Context context, int attribute)
{
    TypedArray a = context.getTheme().obtainStyledAttributes(new int[] { attribute });
    int id = a.getResourceId(0, -1);
    return id;
}

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:

<resources>
    <attr name="pauseButtonImg" format="reference"/>
    <attr name="playButtonImg" format="reference"/>
</resources>
一页 2024-11-26 20:05:41

我仍然不知道如何以编程方式访问主题中的样式,因此我不得不使用带有两个单独按钮的技巧。每个按钮都有自己的样式,我不是更改一个按钮的图像/样式,而是设置两个样式按钮的可见性。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文