简体   繁体   中英

android_Get pictures from SDcard

Get pictures ​​path from SDcard. My picture name is 01.jpg.

Make sure the picture is inside the SD card.

public boolean fileIsExists(){
    try{
        File f1 = new File("/sdcard/01.jpg");   
        f1 = new File("01.jpg");
        if(!f1.exists()){
            return true;
        }
    }catch (Exception e) {
        // TODO: handle exception
        return false;
    }
    return true;
}
boolean file1 = fileIsExists();

If picture is inside the SD card,then put picture into imageview.

Error is in the following code

if (file1==true){
    imageView = (ImageView)findViewById(R.id.image_view);

    String myJpgPath = "/sdcard/01.jpg";
    BitmapFactory.Options options = new BitmapFactory.Options();
    options.inSampleSize = 0;
   Bitmap bitmap = BitmapFactory.decodeFile(myJpgPath, options);//error here Cellphone can't run
    imageView.setImageBitmap(bitmap);
}

在此处输入图片说明

Just try Following Code.

File f = new File("/mnt/sdcard/01.jpg");
ImageView mImgView1 = (ImageView)findViewById(R.id.imageView);
Bitmap bmp = BitmapFactory.decodeFile(f.getAbsolutePath());
mImgView1.setImageBitmap(bmp);

像这样设置路径:

String myJpgPath = Environment.getExternalStorageDirectory().getAbsolutePath()+"folderName/01.jpg";

Change +"sdcard/01.jpg"; to +"/01.jpg";

(And make sure Bitmap bitmap isn't repeat the local variables.)

if (file1==true){
    String myJpgPath = Environment.getExternalStorageDirectory().getAbsolutePath()+"/01.jpg";
    BitmapFactory.Options options = new BitmapFactory.Options();
    options.inSampleSize = 0;
    Bitmap bitmap = BitmapFactory.decodeFile(myJpgPath, options);
    imageView.setImageBitmap(bitmap);
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM