动态获取drawable中的图片

1.首先在drawable中创建一定格式命名的图片。

2.在需要的地方使用下列代码。

for(int i = 1; i <= 15; i++){   
	int id=getResources().getIdentifier("a"+i, "drawable", mContext.getPackageName());   
	//此方法返回一个可绘制的对象与特定的资源ID相关联    
	awable BitAnimation=getResources().getDrawable(id);   
}

 

你可能感兴趣的:(drawable)