2013-06-05 107 views
0

就像標題所示,我似乎無法讓資產文件夾中的圖像打開。無法在Android資產文件夾中打開圖片

public static final String CONTENT_URI = "file:///android:asset/"; 
Uri tmp = Uri.parse(CONTENT_URI + s); 
holder.image.setImageURI(tmp); 

我已經嘗試了一堆不同的語法,我似乎無法獲取要檢測到的資產。繼續收到解決方案關於它找不到文件的錯誤。

s是一個字符串,例如hears.png,它確實在資產文件夾中。

回答

0

這是你需要從資產

yourImageView.setImageBitmap(BitmapFactory.decodeStream(activity.getResources().getAssets().open("whateverResorce.png"))); 

祺獲得的圖像是什麼!

+0

這工作!謝謝 – MasterGberry

相關問題