我想通过我自己的属性从drawable文件夹中检索drawable而不是使用R.drawable
我怎样才能做到这一点?
public void updateLanguageImg(String img)
{
Bitmap myBitmap = BitmapFactory.decodeResource(this.getResources(),R.drawable.);
// i want retrieve the img String here
ImageView imageV = (ImageView) findViewById(R.id.imageLangue);
imageV.setImageBitmap(myBitmap);
}
非常感谢你