我想在ListView滚动时隐藏/显示工具栏。我有包含工具栏的CorrdinatorLayout。我将app:layout_scrollFlags =“scroll | enterAlways”属性添加到工具栏。然后我在Content_min布局中使用RelativeLayout和app:layout_behavior =“@ string / appbar_scrolling_view_behavior”属性。我在CoordinatorLayout -Toolbar中包含了content_main布局,不响应listview上的滚动事件。此功能仅适用于RecyclerView而不适用于listview吗?
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.era.www.onmovie.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<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"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
content_main layout
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.era.www.onmovie.MainActivity"
tools:showIn="@layout/activity_main">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView
android:id="@+id/empty_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
<ProgressBar
android:id="@+id/progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
答案 0 :(得分:0)
滚动行为适用于RecyclerView
,但不适用于ListView
。这是因为滚动行为需要一个实现NestedScrollingChild
接口的滚动组件。此界面由RecyclerView
实现,但不是ListView
。
我的建议是将您的ListView
适配器转换为RecyclerView
适配器并使用RecyclerView
。
据说有一些方法可以将ListView
置于NestedScrollView
内,这将提供滚动行为。我不建议这样做,但是如果你搜索SO,你可以找到一些解决方案,将ListView
包裹在NestedScrollView
内并让工具栏滚动。