【问题标题】:How to overlap the card with a disabled FAB?如何将卡与禁用的 FAB 重叠?
【发布时间】:2021-04-07 15:08:59
【问题描述】:

我有一个带有CardView 和禁用ExtendedFloatingActionButton 的布局,我以编程方式设置为启用,当启用该FAB 时一切正常,但当我将其设置为禁用时,它会在卡后面。

我尝试通过为 FAB 设置更高的高度来同时设置卡片和 FAB 的高度,但是当它被禁用时,它仍然高于..

这是它的样子:

我会显示它重叠,就像启用设置为 true 时一样:

这是我的代码:

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
        android:id="@+id/fabInvia"
        android:layout_width="wrap_content"
        android:enabled="false"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:contentDescription="@string/invia"
        android:text="@string/invia"
        android:textColor="#fff"
        app:elevation="10dp"
        android:translationY="-33dp"
        app:fabSize="normal"
        app:icon="@drawable/ic_baseline_send"

        app:iconTint="#fff"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/cardView" />

 <androidx.cardview.widget.CardView
        android:id="@+id/cardView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardElevation="5dp"
        app:elevation="5dp"
        app:cardUseCompatPadding="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0">

    ...

    </androidx.cardview.widget.CardView>


</androidx.constraintlayout.widget.ConstraintLayout>

【问题讨论】:

    标签: android android-layout android-cardview


    【解决方案1】:

    此问题并非仅限于已禁用的 ExtendedFloatingActionButton,任何其他视图的行为都会相同。

    原因:

    因为CardView 有一个特殊的海拔属性app:cardElevation 只能应用于CardViews,所以translation-zapp:elevation 属性不能解决这个问题。

    解决方案:

    ExtendedFloatingActionButton 包装成另一个CardView。但是需要付出一些努力才能使这个CardView 像它不存在一样,要做到这一点,您需要:

    • 在两个CardViews 上设置完全相同的app:cardElevation(这实际上解决了您遇到的海拔问题。
    • 为新的CardViewapp:cardBackgroundColor="@android:color/transparent" 设置透明背景颜色由于某种原因不起作用,但以编程方式解决它:
    cardView2.setBackgroundColor(ContextCompat.getColor(this, android.R.color.transparent));
    

    还将约束/边距从ExtendedFloatingActionButton 转移到外部CardView

    这是一个示例

    <?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"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <androidx.cardview.widget.CardView
            android:id="@+id/cardView"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            app:cardElevation="5dp"
            app:cardUseCompatPadding="true"
            app:elevation="5dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_bias="0.0">
    
        </androidx.cardview.widget.CardView>
    
        <androidx.cardview.widget.CardView
            android:id="@+id/cardView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            app:cardElevation="5dp"
            app:layout_constraintBottom_toBottomOf="@+id/cardView"
            app:layout_constraintEnd_toEndOf="parent">
    
            <com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
                android:id="@+id/fabInvia"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:enabled="false"
                android:gravity="center"
                android:text="@string/invia"
                android:textColor="#fff"
                app:fabSize="normal"
                app:iconTint="#fff" />
    
        </androidx.cardview.widget.CardView>
    
    </androidx.constraintlayout.widget.ConstraintLayout>
    

    【讨论】:

      【解决方案2】:

      你可以试试:

      • 在 XML 中交换顺序(首先是 cardview,然后是 FAB)
      • 更改平移-z 值
      • 将晶圆厂放置在约束布局之上的单独框架布局中

      【讨论】:

      • 最初 FAB 在 CardView 之后,我仍然遇到同样的问题,translation-z 试过了,在 FrameLayout 中的 fab 更糟..
      猜你喜欢
      • 2018-01-20
      • 2021-09-11
      • 1970-01-01
      • 1970-01-01
      • 2019-05-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-01-23
      相关资源
      最近更新 更多