如何将所有图像放入数组中的“drawable-xxhdpi”?特别是在“Mat”数组中?

时间:2014-09-25 07:25:36

标签: android arrays image

我仍然无法弄清楚如何做到这一点。检索drawable文件夹中的所有图像并将它们加载到一个数组中:(这可能吗?帮助!

1 个答案:

答案 0 :(得分: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