カスタムのダイアログピッカーの - と+ボタンを作成するための単純な円形ボタンを作成しました。スクリーンショット-
に見られるように円形カスタムボタンのインラインアライメントタイトル
と+
少しシフトダウンおよびカスタムバックグラウンドの中央にセンタリングされていません。
私のカスタム背景はdrawable/circular_button.xml
のようになります。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke android:color="@color/colorPrimaryDark" android:width="1dp" />
<solid android:color="@color/colorPrimary" />
<size android:width="30sp" android:height="30sp"/>
</shape>
ボタンは、私は、タグminHeight
について読ん柱の一つでLinearLayout
<Button
android:id="@+id/decrease_one"
android:layout_width="40sp"
android:layout_height="40sp"
android:layout_marginRight="20sp"
android:background="@drawable/rounded_button"
android:text="-"
android:textColor="@color/white"
android:textSize="30sp"
android:textStyle="bold" />
の内側に、このように設定されているが、それは私のproblem.Anyのアイデアを解決していませんか?
バッターFlaotingActionButton –
を使用すると、より効果的なカスタムボタン –