在运行时将可绘制对象中的图像设置为等于变量

发布于 2024-11-08 01:19:06 字数 173 浏览 0 评论 0原文

我的可绘制文件夹中有两张图像,一张称为“红色”,另一张称为“黄色”。我试图将这些图像设置为等于两个变量,一个当前称为“redchip”,另一个称为“yellowchip”。 redchip 和 Yellowchip 都声明为整数。

我可以将 R.drawable 图像整数值设置为等于我的变量吗?如果可以,如何设置?

I have two images in my drawable folder, one called "Red" and the other called "Yellow". I am trying to set these images equal to two variables, one currently called "redchip" and the other called "yellowchip". Both redchip and yellowchip are declared as integers.

Can I set the R.drawable image integer values equal to my variables, and if so, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

白鸥掠海 2024-11-15 01:19:07

我过去所做的是在 util 类中使用映射来返回可绘制对象的整数 id。

例子:

public class DrawableUtil{
   public static final int KEY_CHIP_YELLOW = 0;
   public static final int KEY_CHIP_RED = 1;

   private Map<Integer, Integer> drawableMap = new HashMap<Integer, Integer>();

    DrawableUtil(){
        drawableMap.put(KEY_CHIP_YELLOW, R.drawable.yellowchip);
        drawableMap.put(KEY_CHIP_RED, R.drawable.redchip);
    }

    public int getYellowChip(){
        return drawableMap.get(KEY_CHIP_YELLOW);
    }
}

What I have done in the past is use a map in a util class to return the drawable's integer id.

Example:

public class DrawableUtil{
   public static final int KEY_CHIP_YELLOW = 0;
   public static final int KEY_CHIP_RED = 1;

   private Map<Integer, Integer> drawableMap = new HashMap<Integer, Integer>();

    DrawableUtil(){
        drawableMap.put(KEY_CHIP_YELLOW, R.drawable.yellowchip);
        drawableMap.put(KEY_CHIP_RED, R.drawable.redchip);
    }

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