资源文件数组化后取出使用
2017-10-09 本文已影响0人
four_k
TypedArray mTypedArray = getResources().obtainTypedArray(R.array.images);
int imageId=mTypedArray.getResourceId(index, R.mipmap.image);
mTypedArray.recycle();
TypedArray mTypedArray = getResources().obtainTypedArray(R.array.images);
int imageId=mTypedArray.getResourceId(index, R.mipmap.image);
mTypedArray.recycle();