如何在 Android 中制作这样的按钮?
How to make button like this in Android?
我正在尝试在 android 中使用以下 layout.How 实现按钮?
我已经实现了这样的按钮
我使用下面的代码来制作
<TextView
android:id="@+id/action_text_share"
style="@style/mediumTextSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:gravity="center"
android:singleLine="false"
android:text="Share by Text"
android:padding="10dp"
android:layout_weight="1"
android:background="@drawable/white_broder_round_with_transparent_bg"
android:textColor="@color/blackColor" />
并且有这样的可绘制对象
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/removeContactRedColor"/>
<stroke android:width="2dip" android:color="@color/removeContactRedColor" />
<corners
android:radius="5dip"
/>
</shape>
一些建议:
- 创建背景的可绘制图像并将其用作背景。
- 假设您使用 xml 创建了这个,创建一个纯蓝色形状并将其放在圆上。
你可以在 drawable 中这样做,<item android:right="-2dp">
将从右端移除笔划。
<item android:right="-2dp">
<shape>
<corners android:radius="4dp"/>
<solid android:color="@android:color/transparent" />
<stroke
android:width="1dp"
android:color="@color/app_white" />
</shape>
</item>
设计背景图像并将其设置为具有正确内边距和边距的按钮
根据需要设置与上图相似背景的文字
我正在尝试在 android 中使用以下 layout.How 实现按钮?
我已经实现了这样的按钮
我使用下面的代码来制作
<TextView
android:id="@+id/action_text_share"
style="@style/mediumTextSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:gravity="center"
android:singleLine="false"
android:text="Share by Text"
android:padding="10dp"
android:layout_weight="1"
android:background="@drawable/white_broder_round_with_transparent_bg"
android:textColor="@color/blackColor" />
并且有这样的可绘制对象
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/removeContactRedColor"/>
<stroke android:width="2dip" android:color="@color/removeContactRedColor" />
<corners
android:radius="5dip"
/>
</shape>
一些建议:
- 创建背景的可绘制图像并将其用作背景。
- 假设您使用 xml 创建了这个,创建一个纯蓝色形状并将其放在圆上。
你可以在 drawable 中这样做,<item android:right="-2dp">
将从右端移除笔划。
<item android:right="-2dp">
<shape>
<corners android:radius="4dp"/>
<solid android:color="@android:color/transparent" />
<stroke
android:width="1dp"
android:color="@color/app_white" />
</shape>
</item>
设计背景图像并将其设置为具有正确内边距和边距的按钮
根据需要设置与上图相似背景的文字