无法在Android应用的资源文件夹中打开图像

时间:2013-06-05 18:46:48

标签: android

就像标题所说,我似乎无法将我的资产文件夹中的图像打开。

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

我尝试了很多不同的语法,但似乎无法检测到资产。继续解决它没有找到文件的resolveUri错误。

s是一个字符串,例如hears.png,确实位于资源文件夹中。

1 个答案:

答案 0 :(得分:0)

这是从资产中获取图像所需的内容

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

问候!