我正在尝试从asset
文件夹加载图像,然后将其设置为ImageView
. 我知道如果我使用它会更好R.id.*
,但前提是我不知道图像的 id。基本上,我试图通过其文件名动态加载图像。
例如,我在database
表示中随机检索一个元素,假设是' cow',现在我的应用程序要做的是通过. 这也适用于 中的所有元素。(假设是,对于每个元素都有一个等效的图像)ImageView
database
提前致谢。
编辑
忘了问题,如何从asset
文件夹中加载图像?
签出此代码。在本教程中,您可以找到如何从资产文件夹加载图像。
// 加载图片
try
{
// get input stream
InputStream ims = getAssets().open("avatar.jpg");
// load image as Drawable
Drawable d = Drawable.createFromStream(ims, null);
// set image to ImageView
mImage.setImageDrawable(d);
ims .close();
}
catch(IOException ex)
{
return;
}
这个给你,
public Bitmap getBitmapFromAssets(String fileName) throws IOException {
AssetManager assetManager = getAssets();
InputStream istr = assetManager.open(fileName);
Bitmap bitmap = BitmapFactory.decodeStream(istr);
istr.close();
return bitmap;
}
如果您知道代码中的文件名,调用它不会有问题:
ImageView iw= (ImageView)findViewById(R.id.imageView1);
int resID = getResources().getIdentifier(drawableName, "drawable", getPackageName());
iw.setImageResource(resID);
您的文件名将与 drawableName 同名,因此您不必处理资产。
其中一些答案可能会回答这个问题,但我从不喜欢其中任何一个,所以我最终写了这篇文章,这是我对社区的帮助。
Bitmap
从资产中获取:
public Bitmap loadBitmapFromAssets(Context context, String path)
{
InputStream stream = null;
try
{
stream = context.getAssets().open(path);
return BitmapFactory.decodeStream(stream);
}
catch (Exception ignored) {} finally
{
try
{
if(stream != null)
{
stream.close();
}
} catch (Exception ignored) {}
}
return null;
}
Drawable
从资产中获取:
public Drawable loadDrawableFromAssets(Context context, String path)
{
InputStream stream = null;
try
{
stream = context.getAssets().open(path);
return Drawable.createFromStream(stream, null);
}
catch (Exception ignored) {} finally
{
try
{
if(stream != null)
{
stream.close();
}
} catch (Exception ignored) {}
}
return null;
}
根据Android 开发者文档,使用位图加载会降低应用程序的性能。这是一个链接!所以 doc 建议使用Glide库。
如果您想从 assets 文件夹中加载图像,那么使用Glide库可以帮助您更轻松。
只需将依赖项添加到来自https://github.com/bumptech/glide的 build.gradle (Module:app)
dependencies {
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
}
示例:
// For a simple view:
@Override public void onCreate(Bundle savedInstanceState) {
...
ImageView imageView = (ImageView) findViewById(R.id.my_image_view);
Glide.with(this).load("file:///android_asset/img/fruit/cherries.jpg").into(imageView);
}
如果上述方法不起作用:将此对象替换为下面代码中的视图对象(仅当您在代码中应用了如下 Inflate 方法时)。
LayoutInflater mInflater = LayoutInflater.from(mContext);
view = mInflater.inflate(R.layout.book,parent,false);
public static Bitmap getImageFromAssetsFile(Context mContext, String fileName) {
Bitmap image = null;
AssetManager am = mContext.getResources().getAssets();
try {
InputStream is = am.open(fileName);
image = BitmapFactory.decodeStream(is);
is.close();
} catch (IOException e) {
e.printStackTrace();
}
return image;
}
这在我的用例中有效:
AssetManager assetManager = getAssets();
ImageView imageView = (ImageView) findViewById(R.id.imageView);
try (
//declaration of inputStream in try-with-resources statement will automatically close inputStream
// ==> no explicit inputStream.close() in additional block finally {...} necessary
InputStream inputStream = assetManager.open("products/product001.jpg")
) {
Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
imageView.setImageBitmap(bitmap);
} catch (IOException ex) {
//ignored
}
(另见https://javarevisited.blogspot.com/2014/10/right-way-to-close-inputstream-file-resource-in-java.html)
WebView web = (WebView) findViewById(R.id.webView);
web.loadUrl("file:///android_asset/pract_recommend_section1_pic2.png");
web.getSettings().setBuiltInZoomControls(true);