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.
在 SDK 16 及更高版本上,我可以通过以下方式更改按钮背景
messagesButton.setBackground(swapDrawable);
但此功能不适用于 sdk 15 及以下版本。是否有不同的方式以编程方式更改按钮背景?
也许如果您尝试按钮并查看您会找到它的方法。
button.setBackgroundDrawable()
还有
button.setBackgroundResource()
与 R id 一起使用。