在androidx中的FAB上方显示小吃店

时间:2018-09-12 19:43:17

标签: android kotlin floating-action-button snackbar

尝试使用androidx创建应用。 我的布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.photo.PhotoFragment">


    <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerPhoto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_anchorGravity="top|center"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:itemCount="48"
        tools:layoutManager="GridLayoutManager"
        tools:listitem="@layout/recycler_photo_item"
        tools:spanCount="3" />

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/photoCoordinator"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        >

        <com.google.android.material.bottomappbar.BottomAppBar
            android:id="@+id/mainBottomAppBar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            app:fabAlignmentMode="center"
            android:backgroundTint="@color/colorPrimary"
            app:fabCradleMargin="@dimen/cradle_margin"
            app:fabCradleRoundedCornerRadius="@dimen/corner_radius"
            app:hideOnScroll="true"
            app:navigationIcon="@drawable/ic_menu_24px" />

        <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/photoFab"
            style="@style/Widget.MaterialComponents.FloatingActionButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_camera_alt_24px"
            app:layout_anchor="@id/mainBottomAppBar" />

    </androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

及其外观enter image description here 当我显示小吃栏时,它看起来像这样enter image description here 谷歌表示,snakebar应该显示在底部应用程序栏和工厂上方,但是当尝试显示底部利润率的小吃店时我无法显示

val snackbarView = snackbar.view
    val params = snackbarView.layoutParams as CoordinatorLayout.LayoutParams

    params.setMargins(
            params.leftMargin + marginSide,
            params.topMargin,
            params.rightMargin + marginSide,
            params.bottomMargin + marginBottom
    )

    snackbarView.layoutParams = params

工厂起义! 如何在晶圆厂和底部应用程序栏上方显示小吃栏? 对不起,我英文!

3 个答案:

答案 0 :(得分:2)

因此,您遇到的问题是Google仍未更新FAB行为以使其与新设计保持一致。由于您的FAB位于协调器布局中,并且您正在使用它来启动小吃栏,因此FAB会向上移动以适应(旧行为)

一些解决方案:

  1. 将FAB移出协调器布局,然后将其覆盖在 应用程序栏底部的顶部及其父协调器布局
    • 这可能会使FAB与底部应用栏的任何交互弄乱。这可能不是一个好的长期解决方案,因为将FAB放在协调员中通常是个好主意
  2. 删除FAB行为

    • 这将删除FAB所做的任何行为。与从协调器中删除它的缺点相同,除了它更容易撤消。因此,与第一个相比,我更喜欢此解决方案
    • 您可以使用以下格式以XML进行操作:

      app.layout_behavior=""
      
    • 或者使用以下代码在代码中完成该操作:

      CoordinatorLayout.LayoutParams params = 
                      (CoordinatorLayout.LayoutParams) 
      yourView.getLayoutParams();
      params.setBehavior(new AppBarLayout.ScrollingViewBehavior());
      yourView.requestLayout();
      

看来Google仍在更新行为来源。完成后,您可能需要删除此内容,以便它可以使用其默认行为:

https://github.com/material-components/material-components-android/blob/master/lib/java/com/google/android/material/floatingactionbutton/FloatingActionButton.java

答案 1 :(得分:2)

好像Google更新了准则,但没有更新SDK以及它自己的应用程序(例如Gmail)。

我在这里报告过此事

https://issuetracker.google.com/issues/122163315

答案 2 :(得分:2)

使用材料组件库中的Snackbar并使用setAnchorView方法使Snackbar出现在特定视图上方。

您可以使用:

FloatingActionButton fab = findViewById(R.id.photoFab);
Snackbar snackbar = Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG);
snackbar.setAnchorView(fab);