2011-12-13 80 views

回答

6

要設置圖像視圖的背景首先你必須從圖像路徑創建繪製對象,並使用setBackgroundDrawable()方法來設置背景

用下面的代碼

Bitmap bitmapImage = BitmapFactory.decodeFile(imagePathFromSDCard); 
     Drawable drawableImage = new BitmapDrawable(bitmapImage); 

     imageview.setBackgroundDrawable(drawableImage); 
+0

@ user370305你已經編輯你的答案了。但以前你只給了一個答案。 –

+0

那麼你應該接受你的錯誤,並應該接受正確的評論,而不是爭論他們 –