我在drawable文件夹中有xml文件,用于圆形按钮 - rounded.xml。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#ccc" />
<corners android:radius="5dp" />
<stroke android:width="1dp" android:color="#000" />
</shape>
通常我在按钮xml中使用android:background = "@drawable/rounded"
设置它,但我想创建几个不同颜色的xml文件,以便我可以更改应用主题。
你知道我应该如何设置按钮的背景,但是在java?
答案 0 :(得分:6)
这应该有效:
Button button = (Button) findViewById(R.id.myButton);
button.setBackgroundResource(R.drawable.rounded);