使用AppBarLayout底部的元素在导航栏后面绘制元素

时间:2018-11-22 05:25:32

标签: android android-layout android-fragments android-coordinatorlayout

我正在尝试在不同的屏幕上进行片段导航。 我们决定滚动时必须删除工具栏。使用AppBarLayout和layout_scrollFlags“ scroll”很容易。

所以我使用一个NestedScrollView来包含片段。 一些片段仅包含一个按钮,我希望将其放置在底部。其他是需要滚动的大菜单。

因此,为此,我在NestedScrollView上使用标志fillViewPort。如果片段很短,它将填充整个屏幕,并且按钮将显示在底部。

问题是,如果我在AppBarLayout上使用标志“ scroll”,则该片段的底部有一个按钮,它将放置在导航栏的后面,而如果我不使用标志“ scroll”,则NestedScrollView会调整大小到其适当的大小,并且该按钮可见。

该测试很容易在AndroidStudio上的布局预览中进行复制。

我想做些奇怪的事情吗?如何使用带有标志“ scroll”的Coordinator和AppBarLayout在某些(小)片段的底部实现按钮? 请注意,fitsSystemWindow对此没有影响。

这只是使用app:layout_scrollFlags="scroll"

enter image description here

这正在使用app:layout_scrollFlags="scroll"

enter image description here

这是简化布局的代码:

<?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"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <android.support.v4.widget.NestedScrollView
        android:fillViewport="true"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

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

    </android.support.v4.widget.NestedScrollView>

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

以防万一,这是“ content_main.xml”

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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=".MainActivity"
    tools:showIn="@layout/activity_main">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:backgroundTint="@android:color/red"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />
</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:1)

解决方案:在<NestedScrollView>下单独单独添加AppBarLayout会避免屏幕可见,因为它占用了屏幕的宽度和高度,但是{{ 1}}将默认情况下将视图移到另一个视图之下。

因此,解决方法是将CoordinatorLayout包装在<NestedScrollView>这样的单独布局中,如下所示:

<LinearLayout>

这将按预期工作,您将能够看到视图并在滚动条上隐藏工具栏。

其余代码保持不变。尝试一下,如有问题请发表评论。