回答
使用ImageButton
,並調用setImageBitmap()
來設置前景圖像。 setBackgroundResource()
用於按鈕背景,需要使用StateListDrawable
才能生效。
撥打電話setImageBitmap
在您的按鈕上。
myButton.setImageBitmap(myBitmap);
我可以找到setImageBitmap方法。你確定是一個Button類的方法嗎? – GVillani82
它來自ImageView。我在猜測。 – wtsang02
您需要使用'ImageButton',它是'ImageView'的子類http://developer.android.com/reference/android/widget/ImageButton.html – Doomsknight
- 1. 如何設置圖片上傳按鈕?
- 2. 如何設置按鈕上的圖像
- 3. 如何在JFrame的任何位置設置按鈕的位置
- 4. 如何設置按鈕位置?
- 5. 如何設置按鈕位置
- 6. 如何設置j按鈕的位置?
- 7. 如何在頁面上設置按鈕位置
- 8. 如何將位圖圖像設置爲按鈕背景圖片
- 9. 如何在按鈕上設置回調?
- 10. 設置按鈕的位置
- 11. 設置按鈕位置
- 12. 在webview上設置圖像按鈕
- 13. 在按鈕圖像上設置編號
- 14. 在Android的按鈕上設置圖像?
- 15. 如何在圖像上放置按鈕
- 16. 如何在圖像上放置按鈕
- 17. ios:mapkit如何在地圖上啓用curent位置按鈕?
- 18. 在Java中設置按鈕的位置
- 19. 在SBTableAlert中設置按鈕位置
- 20. 在Python中設置按鈕的位置?
- 21. java - 在位置設置按鈕和TextAreas
- 22. 在UITableView上設置按鈕
- 23. 如何設置圖像按鈕,在按鈕
- 24. Netbeans 7.1.2按鈕上的圖標位置
- 25. Android:如何在多個圖像按鈕上設置監聽器?
- 26. 如何在Monotouch下的iPhone上設置按鈕背景圖像?
- 27. 如何在單選按鈕上設置圖像
- 28. 如何在導航欄的按鈕上設置圖像?
- 29. 如何設置按鈕上的焦點?
- 30. 如何設置UIControlStateSelected的按鈕圖像
Button沒有什麼可做的嗎? – GVillani82
@ Joseph82:'Button'用於文字說明。 'ImageButton'用於圖像。你可以使用帶'Button'的'setCompoundDrawablesWithIntrinsicBounds()'來放置一個圖像和一個標題,儘管你必須爲這些對象創建'BitmapDrawable'對象。 – CommonsWare