丸いボタンの描画可能なフォルダーに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で設定する方法を知っていますか?