2010-11-22 150 views
1

我希望能夠將xml文件中圖像按鈕的背景設置爲用戶在手機上拍攝的圖片。如何將圖像按鈕的背景設置爲用戶拍攝的圖片?

我把圖片設置爲cameraBitmap。

cameraBitmap = (Bitmap) intent.getExtras().get("data"); 

我想將該圖片傳遞給imagebutton的bakground。問題是,方法:setBackgroundDrawable()只能通過繪製。我該如何去改變該位圖爲可繪製的圖片並將其作爲背景?

我目前有:

private ImageButton theImageButton; 


theImageButton.setBackgroundDrawable(cameraBitmap); 

回答

6

如果您正在使用的ImageButton爲什麼你不能用這個

theImageButton.setImageBitmap(cameraBitmap) 
相關問題