gpt4 book ai didi

java - 当 CL 的高度设置为wrap_Content 时,为什么坐标布局 ( CL ) 会隐藏一半的 float 操作按钮?

转载 作者:太空宇宙 更新时间:2023-11-04 09:25:30 27 4
gpt4 key购买 nike

所以我尝试制作这样的布局:

enter image description here

一种方法是使用底部应用栏 Anatomy ,但底部应用栏的问题是它只能在坐标布局中使用。但我想要一个 ListView 或说它上面的任何其他 View ,所以我使用约束布局,然后添加带有底部应用程序栏和 fab 的坐标布局,问题是,当我设置坐标布局的高度来包装内容以便在其上方为其他 View 腾出空间时,它隐藏了一半的 FAB { float 操作按钮 ),但是在将坐标布局高度设置为 match_parent 时显示完整的 FAB,现在当我使用 match_parent 作为高度时,它将替换约束布局,并且我将不再能够正常使用约束布局来添加其他 View ,那么如何在显示完整的FAB的同时将约束布局的高度设置为wrap_content

这是我想要使用的代码 [XML],但没有产生所需的结果,因为它隐藏了 FAB 的一半

<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"
android:background="@color/colorAppWhite"
tools:context=".ActivityFive">


<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/coordinatorLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent">

<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/af_bn"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:backgroundTint="@color/colorWaarkDB1"
app:fabAlignmentMode="center"
app:fabCradleRoundedCornerRadius="16dp">

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

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add_black_24dp"
app:elevation="16dp"
app:fabSize="normal"
app:layout_anchor="@+id/af_bn" />


</androidx.coordinatorlayout.widget.CoordinatorLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

它给了我这样的东西(第一):

enter image description here

但我想要这个(第二个):

https://media.discordapp.net/attachments/597356915219103745/617762091134222366/fab1.png?width=165&height=300

为了实现类似图像 2 的效果,我必须将 coordinatorlayout 的高度设置为 match_parent,但我希望协调器布局与它的子级占用的空间一样大,我该怎么做?

最佳答案

尝试下面的方法...我有类似的案例,这个帮助了我..

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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=".controller.MainActivity">

<include layout="@layout/content_listview_here"/>

<android.support.design.bottomappbar.BottomAppBar
android:id="@+id/bottomAppBar"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_gravity="bottom"
app:backgroundTint="#E3E3E3"
app:hideOnScroll="false"
app:fabAlignmentMode="center"/>

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_home_white"
app:backgroundTint="@color/colorPrimary"
app:fabSize="normal"
app:layout_anchor="@id/bottomAppBar" />

</android.support.design.widget.CoordinatorLayout>

关于java - 当 CL 的高度设置为wrap_Content 时,为什么坐标布局 ( CL ) 会隐藏一半的 float 操作按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57749868/

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