tags:

views:

131

answers:

2

Hi folks

how to store image and audio files in android internal storage

and how to retrieve back to display image imageview

Thanks in advance

Aswan

+1  A: 

You can write a file to your internal storage. Check this link

http://developer.android.com/intl/de/guide/topics/data/data-storage.html#filesInternal

Retrieve a File

 ImageView image = new ImageView();
 Bitmap bMap = BitmapFactory.decodeFile("/folder/yourfilename.png");
 image.setImageBitmap(bMap);
Rahul
thankq for your reply.i am asking about storing image and retrieve image and display.myself i have storing image in internals but i cant able to display in imageview
Aswan
Check my updated post...
Rahul
thankq rahul i am trying myself and let you know
Aswan