滚动内容布局时,工具栏未隐藏

时间:2017-05-19 05:39:34

标签: android android-layout android-studio android-fragments

    <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    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:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"/>

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


    <android.support.v4.view.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/tab_bar" />

    <com.whl.handytabbar.HandyTabBar
        android:id="@+id/tab_bar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:layout_alignParentBottom="true"
        android:layout_gravity="bottom"
        android:background="@drawable/custom_shadow" />

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

3 个答案:

答案 0 :(得分:2)

工具栏位于AppBarLayout内部,可能在您的CoordinatorLayout内部,然后这样的东西应该有效。

AppBarLayout appBarLayout = (AppBarLayout)findViewById(R.id.appBar);
        appBarLayout.setExpanded(true, true);

或者要折叠工具栏,那么这样的东西应该可以工作

AppBarLayout appBarLayout = (AppBarLayout)findViewById(R.id.appBar);
        appBarLayout.setExpanded(false, true);

答案 1 :(得分:0)

点击此链接,您将在此处获得答案:

  

How to hide ToolBar when i scrolling content up in android

答案 2 :(得分:-1)

您需要在下面的滚动视图中使用此app:layout_behavior="@string/appbar_scrolling_view_behavior"

 <android.support.v7.widget.RecyclerView
    android:id="@+id/rvToDoList"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">
  

我们需要定义AppBarLayout和View之间的关联   将滚动。将app:layout_behavior添加到RecyclerView或   任何其他能够嵌套滚动的视图,如NestedScrollView。   支持库包含特殊的字符串资源   映射到的@ string / appbar_scrolling_view_behavior   AppBarLayout.ScrollingViewBehavior,用于通知   在此特定视图上发生滚动事件时的AppBarLayout。该   必须在触发事件的视图上建立行为。

你应该看看This Guide