1
我想從我的SD卡中將.jpg顯示到我的佈局中的圖像視圖中。我沒有得到任何錯誤,但沒有得到顯示。我將不勝感激任何幫助。由於Android:使用ImageView顯示來自SD卡的.jpg圖像
編輯:
layout1 = (LinearLayout) findViewById(R.id.layout1Activity);
String imgFile = Environment.getExternalStorageDirectory() + "/Apple.jpg";
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile);
ImageView myImage = new ImageView(this);
myImage.setImageBitmap(myBitmap);
layout1.addView(myImage);
你似乎缺少'「'在你的代碼... –
哎呀固定它 – AndroidDev93
你寫getExternalStorageState()代替getExternalStorageDirectory(),你可以從我的答案中複製它 – Raykud