I still can't figure out how to do this. Retreive all images in the drawable folder and load them in an array:( is this possible? HELP!
Asked
Active
Viewed 102 times
1
-
Hoping someone with a good heart will help :( – pejay cruz Sep 25 '14 at 07:27
1 Answers
0
int[] myImageList = new int[]{R.drawable.thingOne, R.drawable.thingTwonR,drawable.thingTwo};
ArrayList<Integer> myImageList = new ArrayList<Integer>();
myImageList.add(R.drawable.thingOne);

Community
- 1
- 1

Naveen Tamrakar
- 3,349
- 1
- 19
- 28
-
-
Sir. Is the "thingone" there the integer id of the image? If that is. How can i get its integer id? – pejay cruz Sep 25 '14 at 10:04
-