將圖片放入位圖時,我正面臨着NullpointerExcetion。我從SD卡獲取圖像。將圖片放入位圖時爲空指針異常
Uri path = android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
imageFile = new File(getRealPathFromURI(path));
if(imageFile.exists()){
Bitmap myBitmap = BitmapFactory.decodeFile(imageFile.getAbsolutePath());
ImageView myImage = (ImageView) findViewById(R.id.imageView1);
myImage.setImageBitmap(myBitmap);
}
因爲您的代碼不檢查空值,你能告訴我們其中的NullPointerException occures? – shkschneider
@shkschneider ...最後一行。 myImage.setImageBitmap(MYBITMAP); –
總是發佈完整的堆棧跟蹤,謝謝。 – m0skit0