在我的应用程序中,我想在列表滚动时隐藏/显示工具栏。在我看来,我实现了如下所示的所有内容:如何在链接下显示/隐藏:
https://mzgreen.github.io/2015/06/23/How-to-hideshow-Toolbar-when-list-is-scrolling%28part3%29/
问题是,当滚动列表时,工具栏没有移动/隐藏。
以下是.xml的代码:
<?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"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:titleTextColor="@android:color/white" />
</android.support.design.widget.AppBarLayout>
<se.emilsjolander.stickylistheaders.StickyListHeadersListView
android:id="@+id/lvRef"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
以下是依赖项:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'se.emilsjolander:stickylistheaders:2.7.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
}
答案 0 :(得分:2)
不幸的是,没有办法让ListView上的嵌套滚动工作。 改为使用粘性标题RecyclerView。
答案 1 :(得分:1)
如果要在向下滚动时隐藏工具栏,请先检测ListView或RecyclerView的滚动dy
,然后再从工具栏中获取actionBar对象。
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
//in on scroll listener of your view check for dy
if (dy > 0) {
//detecting scroll up action
toolbar.setVisibility(View.GONE);
} else {
//detect scrolldown action dy<0
toolbar.setVisibility(View.VISIBLE);
}
答案 2 :(得分:1)
在工具栏的布局中:
使用android:layout_height="?attr/actionBarSize"
代替android:layout_height="wrap_content"
并删除android:minHeight="?attr/actionBarSize"
答案 3 :(得分:0)
隐藏工具栏,你可以这样做
toolbar.animate().translationY(-toolbar.getBottom()).setInterpolator(new AccelerateInterpolator()).start();
要再次显示工具栏,请执行此操作
toolbar.animate().translationY(0).setInterpolator(new DecelerateInterpolator()).start();