丸いボタンの作り方は?質問する

丸いボタンの作り方は?質問する

丸いボタンを作ろうとしているのですが、どうしたらいいのかわかりません。角が丸いボタンは作れますが、丸い円を作るにはどうしたらいいのでしょうか。同じではありません。Android でもできるかどうか教えてください。よろしくお願いします。

ベストアンサー1

roundedbutton.xml描画可能フォルダに名前の付いたxmlファイルを作成する

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="rectangle">
    <solid android:color="#eeffffff" />
    <corners android:bottomRightRadius="8dp"
        android:bottomLeftRadius="8dp"  
        android:topRightRadius="8dp"
        android:topLeftRadius="8dp"/>
</shape>

Button最後にそれをあなたの背景として設定しますandroid:background = "@drawable/roundedbutton"

完全に丸くしたい場合は、半径を変更して、適切なものに落ち着きます。

おすすめ記事