位图始终显示为null?

时间:2014-01-19 05:06:08

标签: android bitmap

在我的程序中,我必须将图像路径更改为位图。图像路径已经退出,但是当我更改为位图时,位图始终显示为null。我不知道发生了什么。这是我的代码。

String dirName = Environment.getExternalStorageDirectory().toString()+picturePath;
     File sddir = new File(dirName);

         Bitmap myBitmap = BitmapFactory.decodeFile(sddir.getAbsolutePath());
            //Drawable d = new BitmapDrawable(getResources(), myBitmap);
         Log.i("mybitmap",myBitmap+"");

     Log.i("dirName",dirName+"");
     Log.i("FileName",sddir+"");

请给我一些建议......

编辑:Logcat输出:

01-19 11:56:18.085: I/mybitmap(1469): null
01-19 11:56:18.085: I/dirName(1469): /mnt/sdcard/mnt/sdcard/447650.jpg
01-19 11:56:18.085: I/FileName(1469): /mnt/sdcard/mnt/sdcard/447650.jpg
01-19 12:19:59.754: I/PicturePath(1671): /mnt/sdcard/62afbdb0c0d287195c0eb7793427b8b8.jpg

1 个答案:

答案 0 :(得分:1)

您的位图路径错误,您要将路径附加到SD卡两次。试试这个:

Bitmap myBitmap = BitmapFactory.decodeFile("/mnt/sdcard/447650.jpg");

OR

Bitmap myBitmap = BitmapFactory.decodeFile(picturePath);

OR

使picturePath相对于sdcard路径的路径。