Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只有一个简单的问题。如何在按钮上设置位图?我用方法
.setBackgroundResource(int resid)
当我有可绘制资源时。但是我可以为位图做什么?
使用ImageButton, 和调用setImageBitmap()来设置前景图像。setBackgroundResource()是用于按钮背景的,需要是 aStateListDrawable才能生效。
ImageButton
setImageBitmap()
setBackgroundResource()
StateListDrawable
呼叫setImageBitmap您的按钮。
setImageBitmap
myButton.setImageBitmap(myBitmap);