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