是否可以使用 PNG 图像的十六进制值设置 android 图像?
所以我的代码看起来像这样:
ImageView imageView = new ImageView();
String test = intent.getStringExtra(AndroidPoS.MESSAGE_KEY2 + ".PNG"); //MESSAGE_KEY2 contains the hex value for the image
imageView.setImageResource(test);
我知道这不会编译,但这让您对我想要实现的目标有一个基本的了解。如果有人对如何实现这一点有任何想法,将不胜感激。
谢谢,