我需要只使用文件名来显示图像,而不是使用资源id。

ImageView imgView = new ImageView(this);
imgView.setBackgroundResource(R.drawable.img1);

我在可绘制文件夹中有图像img1。我想展示文件中的图像。

我该怎么做呢?


当前回答

Labeeb是对的,为什么你需要设置图像使用路径,如果你的资源已经放在资源文件夹,

只有当图像存储在SD-Card中时,才需要这种路径。

尝试下面的代码来设置存储在sd卡中的文件中的位图图像。

File imgFile = new  File("/sdcard/Images/test_image.jpg");

if(imgFile.exists()){

    Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());

    ImageView myImage = (ImageView) findViewById(R.id.imageviewTest);

    myImage.setImageBitmap(myBitmap);

}

并将此权限包含在manifest文件中:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

其他回答

String path = Environment.getExternalStorageDirectory()+ "/Images/test.jpg";

File imgFile = new File(path);
if(imgFile.exists())
{
   Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
   ImageView imageView=(ImageView)findViewById(R.id.imageView);
  imageView.setImageBitmap(myBitmap);
}

我想你可以用这个

Bitmap bmImg = BitmapFactory.decodeFile("path of your img1");
imageView.setImageBitmap(bmImg);

你可以使用:

ImageView imgView = new ImageView(this);
InputStream is = getClass().getResourceAsStream("/drawable/" + fileName);
imgView.setImageDrawable(Drawable.createFromStream(is, ""));

使用位图可以很容易地做到这一点。你可以在下面找到代码:

ImageView imageView=findViewById(R.id.imageView);

Bitmap bitMapImage= BitmapFactory.decodeFile("write path of your image");

imageView.setImageBitmap(bitMapImage);

Labeeb是对的,为什么你需要设置图像使用路径,如果你的资源已经放在资源文件夹,

只有当图像存储在SD-Card中时,才需要这种路径。

尝试下面的代码来设置存储在sd卡中的文件中的位图图像。

File imgFile = new  File("/sdcard/Images/test_image.jpg");

if(imgFile.exists()){

    Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());

    ImageView myImage = (ImageView) findViewById(R.id.imageviewTest);

    myImage.setImageBitmap(myBitmap);

}

并将此权限包含在manifest文件中:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />