在运行时将可绘制对象中的图像设置为等于变量
我的可绘制文件夹中有两张图像,一张称为“红色”,另一张称为“黄色”。我试图将这些图像设置为等于两个变量,一个当前称为“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我过去所做的是在 util 类中使用映射来返回可绘制对象的整数 id。
例子:
What I have done in the past is use a map in a util class to return the drawable's integer id.
Example: