CoordinatorLayout 与 Framelayout 不起作用

CoordinatorLayout with Framelayout is no working

我在 viewPager 中使用带有三个选项卡的 tabLayout ,我想在滚动时使用 CoordinatorLayout 来隐藏和显示我的工具栏。试了一下还是不行

MainActivity 布局:我在我的 Framelayout 中添加了 app:layout_behavior="@string/appbar_scrolling_view_behavior",它不起作用。

<?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="tw.idv.morton.mydailysugar.MainActivity">

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

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolBar"
            app:contentInsetStart="0dp"
            android:layout_width="match_parent"
            android:layout_height="35dp"></android.support.v7.widget.Toolbar>

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

    <FrameLayout
        android:id="@+id/frameLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"></FrameLayout>

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

我的选项卡布局:我尝试将 ScrollView 更改为 android.support.v4.widget.NestedScrollView ,但仍然无效。

<LinearLayout 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"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:paddingLeft="@dimen/appPadding"
    android:paddingRight="@dimen/appPadding"
    android:paddingTop="@dimen/appPadding"
    android:background="#ffffff"
    tools:context=".MyTabs.MyDailyInput">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    // here is lots of button and text and layout...    

    </ScrollView>


</LinearLayout>

这是我的选项卡布局设置:

<LinearLayout 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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    tools:context=".MyTabs.HomeTabs">

    <tw.idv.morton.mydailysugar.MyTabs.NoSwipingViewPager
        android:id="@+id/viewPagerDataReport"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <View
        android:background="@android:color/darker_gray"
        android:layout_width="match_parent"
        android:layout_height="1dp"/>

    <android.support.design.widget.TabLayout
        android:id="@+id/tabLayout"
        android:layout_width="match_parent"
        android:layout_height="55dp"
        android:clickable="true"
        style="@style/AppTabLayout"
        app:tabTextAppearance="@style/AppTabTextAppearance"
        android:background="@color/appColor"
        app:tabTextColor="@android:color/white"
        app:tabGravity="fill"/>
</LinearLayout>

我添加了 app:layout_behavior="@string/appbar_scrolling_view_behavior"android.support.v4.widget.NestedScrollView 为什么它仍然不起作用? 任何帮助,将不胜感激 。提前致谢。

那是因为你没有在工具栏中设置滚动标志。为您的工具栏使用以下代码

<android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"/>

在此处进一步阅读有关滚动技术的更多信息 https://github.com/codepath/android_guides/wiki/Handling-Scrolls-with-CoordinatorLayout