Have you tried Environment.getExternalStorageDirectory()?

http://developer.android.com/intl/fr/reference/android/os/Environment.html#getExternalStorageDirectory()



On Aug 9, 9:51 pm, Justin Rich <richma...@gmail.com> wrote:
> I wrote an app that saves a camera picture to the SD card, then
> accesses the file later to display it into an ImageView.  This works
> fine for all devices except the HTC Droid Eris (maybe the version Eris
> is running?):
>
> ImageView img = (ImageView) findViewById(R.id.ImgProfile1);
>
> BitmapFactory.Options options = new BitmapFactory.Options();
> options.inSampleSize = 4;
> Bitmap bm = BitmapFactory.decodeFile("sdcard/" + filename, options);
> img.setImageBitmap(bm);
>
> Is there a different method of referring to the sdcard location on
> 1.5, 1.6, or the Eris itself?  Any help would be great.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to