从嵌套滚动中排除视图

时间:2016-10-30 11:03:32

标签: android

使用CoordinateLayout时,我面临一种非常奇怪的行为,我猜这是一种默认实现。

我的活动的布局如下:

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll|enterAlways">

            // the header layout here
        </android.support.v7.widget.Toolbar>

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

    <android.support.v4.view.ViewPager
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

    </android.support.v4.view.ViewPager>

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

寻呼机有一些片段,其UI如下所示:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.SwipeRefreshLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        </RecyclerView>

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

    <View
         android:id="@+id/bottom_view"
         android:layout_width="match_parent"
         android:layout_height="match_parent"/>

</FrameLayout>

我希望bottom_view固定在布局的底部,但是只要回收者视图滚动,bottom_view滚动也是如此。布局和代码没有什么特别之处。这种行为是默认的还是我错过了什么?

我试图通过折叠工具栏包装底部视图并将其设置为“pin”模式,但它没有帮助。

0 个答案:

没有答案