在TabLayout中我有2个选项卡,其中第一个放置了带有recyclerView的FrameLayout,第二个选项卡中有带有LinerLayout的ScrollView。当我在任何标签中滚动时,我需要隐藏工具栏。当我滚动RecyclerView在第一个标签工具栏滚动时,但当我在第二个标签滚动它不是。可以理解为什么。
我有这个main_acrivity.xml
<FrameLayout 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:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
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"
app:layout_scrollFlags="scroll|enterAlways"/>
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:tabIndicatorColor="@android:color/background_light"
app:tabSelectedTextColor="@android:color/background_light"
app:tabTextColor="@android:color/background_light"/>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
</FrameLayout>
答案 0 :(得分:2)
新的滚动行为不适用于常规android.widget.ScrollView
,因为它不支持嵌套滚动。
滚动行为依赖于支持嵌套滚动的视图,这需要在视图树上传播滚动事件,以便工具栏知道何时向上滑动和隐藏。
它与RecyclerView一起使用的原因是它默认支持嵌套滚动。
您需要的是NestedScrollView
:
NestedScrollView就像ScrollView,但它支持表现为 新旧版本上的嵌套滚动父级和子级 Android版默认情况下启用嵌套滚动。
因此,在具有ScrollView的布局中,将其替换为android.support.v4.widget.NestedScrollView
,滚动视图行为将按预期工作:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- your content here...... -->
</android.support.v4.widget.NestedScrollView>