Hey,
I have 52 png named 1.png, 2.png, ... Each representing 1 card.
In my game i know that i have to draw card number 37. How can i do that ? BitmapFactory.decodeResource(getResources(), ???)
Maybe i could use a map with keys = 1,2,3,.. and values R.drawable.1, R.drawable.2, ... but is there a clever way ?
thanks