Wie kann ich eine Bilddatei von einer SD-Karte in eine Bitmap einlesen?
_path = Environment.getExternalStorageDirectory().getAbsolutePath();
System.out.println("pathhhhhhhhhhhhhhhhhhhh1111111112222222 " + _path);
_path= _path + "/" + "flower2.jpg";
System.out.println("pathhhhhhhhhhhhhhhhhhhh111111111 " + _path);
Bitmap bitmap = BitmapFactory.decodeFile(_path, options );
Ich erhalte eine NullPointerException für Bitmap. Dies bedeutet, dass die Bitmap null ist. Aber ich habe eine Bild ".jpg" -Datei in SD-Karte als "Flower2.jpg" gespeichert. Was ist das Problem?
selected_photo
hier