AppBarLayout 中的 Toolbar 真的是可滚动的吗? 尽管具有“ appbar _ scrolling _ view _ actions”的主容器没有足够的内容来真正滚动?
到目前为止,我已经测试了:
当我使用 NestedScrollView (带有“ wrash _ content”属性)作为主容器,使用 TextView 作为子容器时,AppBarLayout 可以正常工作,不会滚动。
然而,当我使用一个只有几个条目和“ wrash _ content”属性(这样就不需要滚动)的回收视图时,AppBarLayout 中的工具栏是可滚动的,即使回收视图从未收到滚动事件(使用 OnScrollChangeListener 测试)。
这是我的布局代码:
<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/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
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"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:theme="@style/ToolbarStyle" />
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
下面的效果是,工具栏是可滚动的,虽然它不是必需的:
我还找到了一种处理这个问题的方法,即检查所有回收视图项是否可见,并使用回收视图的 setNestedScrollingEnable ()方法。
尽管如此,在我看来,它确实更像一个 bug。有什么意见吗
对于那些可能对我当前的解决方案感兴趣的人,我不得不把 setNestedScrollingEnable ()逻辑放在一个 Handler 的 postDelayed ()方法中,这个方法有5ms 的延迟,因为 LayoutManager 在调用这些方法时总是返回 -1,以确定第一个和最后一个项目是否可见。
我在 onStart ()方法中使用这段代码(在初始化回收视图之后) ,并在每次发生回收视图的内容更改之后使用。
final LinearLayoutManager layoutManager = (LinearLayoutManager) mRecyclerView.getLayoutManager();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
//no items in the RecyclerView
if (mRecyclerView.getAdapter().getItemCount() == 0)
mRecyclerView.setNestedScrollingEnabled(false);
//if the first and the last item is visible
else if (layoutManager.findFirstCompletelyVisibleItemPosition() == 0
&& layoutManager.findLastCompletelyVisibleItemPosition() == mRecyclerView.getAdapter().getItemCount() - 1)
mRecyclerView.setNestedScrollingEnabled(false);
else
mRecyclerView.setNestedScrollingEnabled(true);
}
}, 5);
我只是玩了一个新的应用程序,似乎这个(无意的)行为已经在支持库版本23.3.0(甚至更早)中得到修复。因此,再也不需要变通方法了!