I need to show image by using File name only not from the Resource id.

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

I have the image img1 in the drawable folder. I wish to show that image from the file how to do this.

link|improve this question

50% accept rate
feedback

6 Answers

up vote 29 down vote accepted

Labeeb is right about why u need to set image using path if your resources are already laying inside the resource folder,

And this kind of path is needed only when your images are stored in SD-Card.

And try the below code to set Bitmap images from a file stored inside a SD-Card.

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);

}
link|improve this answer
3  
Almost: ´decodeFile´ takes a String and not a ´java.io.File´. – Martin Apr 29 '11 at 11:51
What kinds of image does this code support? png, jpg, ...? – Emerald214 Apr 27 at 8:54
feedback

I think you can use this

Bitmap bmImg = BitmapFactory.decodeFile("path of your img1");
imageView.setImageBitmap(bmImg);
link|improve this answer
Bitmap bmImg = BitmapFactory.decodeFile("res\\drawable-hdpi\\img1.png"); I set path like the above But i am not able to show the image – Alex Nov 15 '10 at 6:21
3  
Ho you cannot use that path of your res here. that can only be used to store image form sd card or other memory. I wondered, why u need to set image using path if your resource is there in resource folder – Labeeb P Nov 15 '10 at 6:28
1  
@Alex: Android is a Unix OS and uses "/" as path separator. You might want to buy yourself “Beginning Android Development” and read it. – Martin Apr 29 '11 at 11:56
feedback

You can also use:



    File imgFile = new  File(“filepath”);
    if(imgFile.exists())
    {
        ImageView myImage = new ImageView(this);
        myImage.setImageURI(Uri.fromFile(imgFile));

    }

This does the bitmap decoding implicit for you.

link|improve this answer
feedback
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);
}
link|improve this answer
feedback

You may use this to access a specific folder and get particular image

 public void Retrieve(String path, String Name)
   {
    File imageFile = new File(path+Name);

    if(imageFile.exists()){

        Bitmap myBitmap = BitmapFactory.decodeFile(path+Name);
        myImage = (ImageView) findViewById(R.id.savedImage);
        myImage.setImageBitmap(myBitmap);
        Toast.makeText(SaveImage.this, myBitmap.toString(), Toast.LENGTH_LONG).show();

    }
}

And then you can call it by

Retrieve(Environment.getExternalStorageDirectory().toString()+"/Aqeel/Images/","Image2.PNG");
Toast.makeText(SaveImage.this, "Saved", Toast.LENGTH_LONG).show();
link|improve this answer
feedback

You can use:

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

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.