0
我想通過我自己的屬性檢索繪圖文件夾中的drawable,而不是使用R.drawablegetDrawable從資源
我該如何實現這一目標?
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);
}
非常感謝您
如果資源未找到,您還需要故障轉移 – nicopico 2013-03-18 23:56:26
@Martin Cazares非常感謝。它像一個魅力 – user2177823 2013-03-19 20:30:13
沒問題,很高興幫助... – 2013-06-04 20:31:53