gpt4 book ai didi

android - 底部工作表按钮自定义样式不起作用

转载 作者:行者123 更新时间:2023-12-05 00:15:58 25 4
gpt4 key购买 nike

在我的 BottomSheetDialogFragment 中,我有一个按钮,我想让这个按钮的背景带有灰色边框。

这是我的圆形背景可绘制“rounded_tranparent_background.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="#FFF" />
<stroke
android:width="1dp"
android:color="#8A8383" />
<corners
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp" />
</shape>

我将这个背景应用到底部工作表按钮。

这是底部工作表布局代码:

<?xml version="1.0" encoding="utf-8"?>
<layout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">


<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
android:id="@+id/btnFollowUnfollow"
android:background="@drawable/rounded_tranparent_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/avenir_next_ltpro_medium"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="Unfollow"
android:textColor="@color/colorGreyDark"
app:layout_constraintBaseline_toBaselineOf="@+id/tvTitle"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.71"
app:layout_constraintStart_toEndOf="@+id/tvTitle" />

//...other code...

</androidx.constraintlayout.widget.ConstraintLayout>

</layout>

这是我对底部工作表对话框的样式

<style name="AppBottomSheetDialogTheme"
parent="Theme.Design.Light.BottomSheetDialog">
<item name="android:windowTranslucentStatus">true</item>
<item name="colorPrimary">@color/colorBlue</item>
<item name="colorPrimaryDark">@color/colorBlueDark</item>
<item name="colorAccent">@android:color/transparent</item>
</style>

应用所有这些代码后,我无法实现我正在寻找的东西。我想要的设计是:button design I am looking for

以及我得到的 button design I am getting now

如何在底部工作表对话框的按钮上实现我的自定义设计?

最佳答案

您可以使用一个简单的MaterialButton:

        <com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:cornerRadius="10dp"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:textColor="..."
app:strokeColor="..."/>

enter image description here

关于android - 底部工作表按钮自定义样式不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63438598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com