1

丸いボタンの描画可能なフォルダーに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>

通常はandroid:background = "@drawable/rounded"ボタン xml 内で設定しますが、アプリのテーマを変更できるように、異なる色の xml ファイルをいくつか作成したいと思います。

ボタンの背景をJavaで設定する方法を知っていますか?

4

1 に答える 1

6

これはうまくいくはずです:

Button button = (Button) findViewById(R.id.myButton);
button.setBackgroundResource(R.drawable.rounded);
于 2013-10-04T21:45:05.150 に答える