如何在 Android Studio 中调整圆形按钮背景?
How one can adjust the rounded button background in Android Studio?
这是我的圆形按钮的代码。它在可绘制文件中。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle">
<solid android:color="@color/teal_200"/>
<corners android:radius="100dp"/>
</shape>
那是我的 activiy_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/btnRnd"
android:layout_width="200dp"
android:layout_height="65dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="272dp"
android:background="@drawable/round_btn"
android:gravity="center"
android:text="Click Me"
android:textSize="30sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.497"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
形状没有问题,顺便说一句,它会变成圆形,但通常我的按钮颜色必须是 teal_200,这是绿松石色,但当它出现在设计上时,它看起来是默认颜色,就像我没有指定任何颜色一样。
android:backgroundTint="@null"
app:backgroundTint="@null"
将这些行添加到按钮的 xml 代码中。
这是我的圆形按钮的代码。它在可绘制文件中。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle">
<solid android:color="@color/teal_200"/>
<corners android:radius="100dp"/>
</shape>
那是我的 activiy_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/btnRnd"
android:layout_width="200dp"
android:layout_height="65dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="272dp"
android:background="@drawable/round_btn"
android:gravity="center"
android:text="Click Me"
android:textSize="30sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.497"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
形状没有问题,顺便说一句,它会变成圆形,但通常我的按钮颜色必须是 teal_200,这是绿松石色,但当它出现在设计上时,它看起来是默认颜色,就像我没有指定任何颜色一样。
android:backgroundTint="@null"
app:backgroundTint="@null"
将这些行添加到按钮的 xml 代码中。