当我试图隐藏在RecyclerView滚动上时,工具栏会留空间

时间:2016-02-08 10:57:19

标签: android android-recyclerview android-toolbar android-coordinatorlayout

我想在toolbar的滚动条上隐藏我的recyclerView。它隐藏在滚动条上,但问题隐藏后会留下空格。

我按照以下链接 -

1 - TutLinks 1

2 - TutLinks 2

2 个答案:

答案 0 :(得分:1)

我找到了问题并修复了它。实际上,问题出在包含标记

在上面的代码中,我使用了include标记, include标记无法执行工具栏的功能。装置

  

应用程式:layout_scrollFlags = “滚动| enterAlways”

在包含标记中不起作用。

如果我使用 scrollFlags 直接在XML文件中使用工具栏,那么一切正常。

或者在toolbar.xml中添加 layout_scrollFlags

<强> toolbar.xml

  
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:titleTextColor="#FFFFFF"
    app:layout_scrollFlags="scroll|enterAlways"   
    />

更改后,我无需手动隐藏和显示工具栏。

并且一切正常。

答案 1 :(得分:0)

toolbar.animate().translationY(-toolbar.getBottom()).setInterpolator(new AccelerateInterpolator()).start();

如果您想再次显示,请致电:

toolbar.animate().translationY(0).setInterpolator(new DecelerateInterpolator()).start();

http://rylexr.tinbytes.com/2015/04/27/how-to-hideshow-android-toolbar-when-scrolling-google-play-musics-behavior/