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

hwazgwia  于 2023-05-15  发布在  Android
关注(0)|答案(4)|浏览(137)

在我的BottomSheetDialogFragmen t,我有一个按钮,我想使这个按钮的背景与灰色边框圆形。
下面是我的圆形背景图“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>

在应用了所有这些代码之后,我无法实现我正在寻找的东西。我想要的设计是:

我得到的是

我怎样才能实现我的自定义设计在底部工作表对话框中的按钮?

sf6xfgos

sf6xfgos1#

你可以使用一个简单的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="..."/>

dy1byipe

dy1byipe2#

这个方法对我有效:

<Button        
    android:background="@drawable/rounded_tranparent_background"
    ...

添加“android:backgroundTint”和app:backgroundTint:

<Button        
    android:background="@drawable/rounded_tranparent_background"
    android:backgroundTint="@null"
    app:backgroundTint="@null"
    ...

我的按钮主题定义在BottomSheetDialogFragment中也被忽略了

<-- Themes.xml -->
<style>
    <item name="materialButtonStyle">MyButtonStyle</item>

<!-- So quick fix: -->
<Button        
     android:background="@drawable/rounded_tranparent_background"
     android:theme="@style/MyButtonStyle"
f4t66c6m

f4t66c6m3#

例如,您可以为按钮使用自定义可绘制对象。

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    tools:ignore="ResourceName">
    <solid android:color="@color/inside_color" />

    <stroke
        android:color="@color/border_color"
        android:width="3px" />
    <corners android:radius="16dp" />

</shape>

输出将是这样的

xn1cxnb4

xn1cxnb44#

看起来BottomSheetFragment正在覆盖您当前的主题,因此您必须在Button中添加这行代码。对我很有效。

<Button         
android:theme="@style/Theme.YOURTHEME"
/>

相关问题