カスタムボタンを作成し、円にする必要があります。サークルボタンを作成するにはどうすればよいですか?draw9patchではそれが可能だとは思いません。
また、カスタムボタンの作り方もわかりません!
何か提案はありますか?
カスタムボタンを作成し、円にする必要があります。サークルボタンを作成するにはどうすればよいですか?draw9patchではそれが可能だとは思いません。
また、カスタムボタンの作り方もわかりません!
何か提案はありますか?
回答:
次のようにxml drawableを使用します。
次のコンテンツをフォルダに保存round_button.xml
しdrawable
ます
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false">
<shape android:shape="oval">
<solid android:color="#fa09ad"/>
</shape>
</item>
<item android:state_pressed="true">
<shape android:shape="oval">
<solid android:color="#c20586"/>
</shape>
</item>
</selector>
Androidの重大な影響:が、FloatingActionButton
より良い選択肢である、あなたはXMLセレクタを使用してそれを実行したい場合は、フォルダを作成drawable-v21
してres
、別の保存round_button.xml
次のXMLであり
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="#c20586">
<item>
<shape android:shape="oval">
<solid android:color="#fa09ad"/>
</shape>
</item>
</ripple>
そしてButton
、次のようにxmlの背景として設定します。
<Button
android:layout_width="50dp"
android:layout_height="50dp"
android:background="@drawable/round_button"
android:gravity="center_vertical|center_horizontal"
android:text="hello"
android:textColor="#fff" />
重要:
Markushiは、驚くべき効果を持つサークルボタンウィジェットを作成しました。こちらをクリック!
このツールサイトでは、あらゆる種類のカスタムandroidボタンを作成できます...このツールサイトを使用して、丸い角の丸いボタンと正方形のボタンを作成します。
公式のマテリアルコンポーネントライブラリを使用MaterialButton
すると、Widget.MaterialComponents.Button.Icon
スタイルを適用できます。
何かのようなもの:
<com.google.android.material.button.MaterialButton
android:layout_width="48dp"
android:layout_height="48dp"
style="@style/Widget.MaterialComponents.Button.Icon"
app:icon="@drawable/ic_add"
app:iconSize="24dp"
app:iconPadding="0dp"
android:insetLeft="0dp"
android:insetTop="0dp"
android:insetRight="0dp"
android:insetBottom="0dp"
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.MyApp.Button.Rounded"
/>
現在app:iconPadding="0dp"
、android:insetLeft
、android:insetTop
、android:insetRight
、android:insetBottom
属性は余分なパディングスペースを避けて、ボタン上のアイコンを中央に必要とされています。
app:shapeAppearanceOverlay
属性を使用して、角を丸くします。この場合、円が表示されます。
<style name="ShapeAppearanceOverlay.MyApp.Button.Rounded" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">50%</item>
</style>
最終結果:
app:iconPadding="0dp"
アイコンを確実に中央に配置する必要性を強調する価値があります。これが見つかるまで、かなりの時間をかけてセンターを試しました。app:iconGravityに「center」の値がないことが見落とされているようです。
VectorDrawableとConstraintLayoutを使用する場合
<FrameLayout
android:id="@+id/ok_button"
android:layout_width="100dp"
android:layout_height="100dp"
android:foreground="?attr/selectableItemBackgroundBorderless"
android:background="@drawable/circle_button">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/icon_of_button"
android:layout_width="32dp"
android:layout_height="32dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:srcCompat="@drawable/ic_thumbs_up"/>
<TextView
android:id="@+id/text_of_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@+id/icon_of_button"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginTop="5dp"
android:textColor="@android:color/white"
android:text="ok"
/>
</android.support.constraint.ConstraintLayout>
</FrameLayout>
サークルの背景:circle_button.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="1000dp" />
<solid android:color="#41ba7a" />
<stroke
android:width="2dip"
android:color="#03ae3c" />
<padding
android:bottom="4dp"
android:left="4dp"
android:right="4dp"
android:top="4dp" />
</shape>
FABのようなボタンの場合、このスタイルは次のMaterialButton
とおりです。
<com.google.android.material.button.MaterialButton
style="@style/Widget.MaterialComponents.ExtendedFloatingActionButton"
app:cornerRadius="28dp"
android:layout_width="56dp"
android:layout_height="56dp"
android:text="1" />
結果:
サイズを変更する場合は、ボタンサイズの半分をとして使用するように注意してくださいapp:cornerRadius
。