嘿伙计我试图弄清楚如何在向下滚动时隐藏应用栏,并在向上滚动时显示它。遗憾的是我的xml文件没有运气。我看过一些教程并使用它但仍然没有运气。我看到了一些教程,即使只有xml才可以实现,继承人我的xml希望有人可以帮助我弄清楚它为什么不滚动。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.serverus.oom.ServiceActivity"
android:orientation="vertical">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<include android:id="@+id/app_bar" layout="@layout/app_bar" app:layout_scrollFlags="scroll|enterAlways" />/>
</android.support.design.widget.AppBarLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/service_content"
>
</LinearLayout>
</ScrollView>
</android.support.design.widget.CoordinatorLayout >
并且是我的gradle依赖。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:design:22.2.0'
compile 'com.parse.bolts:bolts-android:1.+'
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
}
答案 0 :(得分:3)
将ScrollView
替换为android.support.v4.widget.NestedScrollView - 只有NestedScrollView
提供应用栏在Lollipop之前隐藏所需的滚动回调。
答案 1 :(得分:2)
我找到了答案,为什么它不起作用。 CoordinatorLayout does not hide Toolbar on scrolling despite implementing all required parameters “看来由于某些原因,在使用标签时使用CoordinatorLayout滚动不起作用。” 并且有人已发送问题:https://code.google.com/p/android/issues/detail?id=175526