android 浮动操作按钮布局锚在我的代码中不起作用

hjzp0vay  于 2023-05-15  发布在  Android
关注(0)|答案(1)|浏览(136)

the app:layout_锚不工作

我想在我的两个相对布局之间的浮动动作按钮。
为此,我将父布局作为协调器布局,并将锚和锚点重力指定为fab按钮。
但它没有设置在我想要的地方。
我想把晶圆厂的底部导航栏的中间

<?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=".Home">

    <com.google.android.material.bottomappbar.BottomAppBar
        android:id="@+id/bottomAppBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="bottom"
        app:fabCradleMargin="10dp"
        app:fabCradleRoundedCornerRadius="10dp"
        app:fabCradleVerticalOffset="10dp"
        tools:layout_editor_absoluteX="0dp"
        tools:layout_editor_absoluteY="674dp"
        tools:ignore="BottomAppBar,MissingConstraints">

        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/bottomNavigationView"
            android:layout_marginRight="16dp"
            app:menu="@menu/bottom_nav_menu"
            android:background="@drawable/transparent_background" >
        </com.google.android.material.bottomnavigation.BottomNavigationView>

    </com.google.android.material.bottomappbar.BottomAppBar>

    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/baseline_add_24"
        app:layout_anchor="@id/bottomAppBar"
        tools:ignore="MissingConstraints"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

我尝试更改gradle材质版本,但不起作用

ryevplcw

ryevplcw1#

你已经使用了androidx.constraintlayout.widget.ConstraintLayout,这就是为什么app:layout_anchor不工作。请将androidx.constraintlayout.widget.ConstraintLayout替换为Coordinatorlayout
有关详细信息,请访问此链接和示例
https://developer.android.com/jetpack/androidx/releases/coordinatorlayout
FloatingActionButton, layout_anchor and layout_gravity

相关问题