Is it possible to set an android Image using the Hex value of a PNG image??
So my code looks something like this:
ImageView imageView = new ImageView();
String test = intent.getStringExtra(AndroidPoS.MESSAGE_KEY2 + ".PNG"); //MESSAGE_KEY2 contains the hex value for the image
imageView.setImageResource(test);
I know this doesnt compile but that gives you a basic idea of what I am trying to achieve. If anyone has any ideas on how to implement this it would be much appreciated.
Thanks,