如何从可绘制文件夹上的图像获取路径并设置为图像视图,位图?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从可绘制文件夹上的图像获取路径并设置为图像视图,位图?相关的知识,希望对你有一定的参考价值。

我已经在android项目的drawable文件夹中有一些图片了。

我创建了一些对象(代理),然后我需要用我保存在数据库中的这张图片设置imageView

所以,我将图片保存为String photoPath

Uri path1 = Uri.parse("android.resource://"+BuildConfig.APPLICATION_ID+"/" + R.drawable.agent1);
        String photoAg1 = path1.getPath();
ag1.setPhotoPath(photoAg1);

(我已经尝试过path1.toString。)

好的,直到那里没问题。这个对象显示在listViewImageView

为了展示它,我正在做:

    ImageView photo = (ImageView) view.findViewById(R.id.list_cell_photo);
System.out.println(agent.getPhotoPath());                    
Bitmap bitmap = BitmapFactory.decodeFile(agent.getPhotoPath());
                    Bitmap lowdefbitmap = Bitmap.createScaledBitmap(bitmap,300,300,true);

                    photo.setImageBitmap(lowdefbitmap);

问题出在createScaledBitmap上。上面的错误:

java.lang.NullPointerException: Attempt to invoke virtual method 'int android.graphics.Bitmap.getWidth()' on a null object reference
                                                                   at android.graphics.Bitmap.createScaledBitmap(Bitmap.java:714)

System.out.println返回:/ 2131099732如果我把path1.toString返回的是:android.resource://com.aa.xlambton/2131099732

我已经看过了:Create a Bitmap/Drawable from file path

Android get image path from drawable as string

Get absolute path of android drawable image

BitmapFactory: Unable to decode stream: java.io.FileNotFoundException even when file IS actually there

我想我保存这个路径是错误的,因为Bitmap无法解码文件,所以它对createdScaledBitmap来说是空的。

有谁可以帮助我吗?

答案

您可以将参考ID R.drawable.img_name保存为整数而不是保存路径。

当你需要操纵这个drawable时,你可以使用那个id而不是R.drawable.img_name

如果你需要这个drawable的位图,请关注this

Bitmap icon = BitmapFactory.decodeResource(context.getResources(),
                                       saved_id);
另一答案

您可以尝试使用此方法:

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.id.youResourceId);
另一答案

试试这样

public int getImage(String imageName) {

    int drawableResourceId = context.getResources().getIdentifier(imageName, "drawable", context.getPackageName());

    return drawableResourceId;
}
另一答案

在我的项目中,我想从项目文件夹中获取一些图像。因此有一种方法可以在java类中获取图像,但在.xml文件中它很简单。它显然是由资产管理器在android中完成的。 Follow this link 注意:AssetManager assetManager = getAssets();必须位于youractvity.java文件中。

以上是关于如何从可绘制文件夹上的图像获取路径并设置为图像视图,位图?的主要内容,如果未能解决你的问题,请参考以下文章

如何在android中为自定义视图创建setter和getter

如何在 Android Studio 中使用 AsyncTask 从可绘制对象中设置图像

将drawable中的图像作为文件读取

如何将可绘制资源中的图像保存到 SD 卡?

使用包装内容可绘制图像获取图像视图位置

如何在android中动态设置可绘制的图像?