我怎样才能做到这一点?
问问题
36 次
2 回答
0
如果你想要一个带有圆形 textView 的按钮,那么我就是这样做的。请注意,我在com.google.android.material
这里使用以获得我想要的最快结果。
<com.google.android.material.button.MaterialButton
android:id="@+id/button"
android:backgroundTint="@android:color/holo_red_light"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="start"
app:cornerRadius="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
这就是它在我的 IDE 上的样子。
于 2021-01-06T11:52:57.293 回答
0
您可以简单地采取Button
组件。但如果你想采取TextView
那么:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/start_btn_bg"
android:text="start"
android:paddingHorizontal="30dp"
android:paddingVertical="10dp"/>
您可以通过使自定义可绘制来设置背景。以下是自定义可绘制对象:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="@color/color_red_error"
android:centerColor="@color/color_red_error"
android:endColor="@color/colorAccent"/>
<corners android:radius="20dp" />
于 2021-01-06T11:49:06.027 回答