1

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!

pejay cruz
  • 11
  • 4

1 Answers1

0
int[] myImageList = new int[]{R.drawable.thingOne, R.drawable.thingTwonR,drawable.thingTwo};

ArrayList<Integer> myImageList = new ArrayList<Integer>();
myImageList.add(R.drawable.thingOne);

Check this

Community
  • 1
  • 1
Naveen Tamrakar
  • 3,349
  • 1
  • 19
  • 28