我有以下XML布局。我在协调器布局中使用了回收器。虽然当我手动滚动时,它按预期工作。但是当我打电话的时候
mRecyclerView.getLayoutManager().scrollToPosition(selectedPosition);
或mRecyclerView.scrollToPosition(selectedPosition);
以编程方式滚动回收器视图,不滚动。下面是我的XML代码
<android.support.design.widget.AppBarLayout
android:id="@+id/tab_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/backgroundBlue">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|enterAlways">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/standard_layout_margin"
android:layout_marginRight="@dimen/standard_layout_margin"
app:cardElevation="@dimen/small_layout_margin"
app:cardUseCompatPadding="true">
<include
android:id="@+id/details"
layout="@layout/detail_layout" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/standard_layout_margin"
android:layout_marginRight="@dimen/standard_layout_margin"
app:cardElevation="@dimen/small_layout_margin"
app:cardUseCompatPadding="true">
<include layout="@layout/store_layout" />
</android.support.v7.widget.CardView>
</LinearLayout>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/collapsing_toolbar"
android:layout_marginLeft="@dimen/standard_layout_margin"
android:layout_marginRight="@dimen/standard_layout_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
在特定情况下,我希望回收站视图中的特定项目位于屏幕顶部。我有以下java代码,
if (selectedPosition != 0) {
AppBarLayout appBarLayout = (AppBarLayout) mView.findViewById(R.id.tab_appbar);
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) appBarLayout.getLayoutParams();
AppBarLayout.Behavior behavior = (AppBarLayout.Behavior) params.getBehavior();
if(behavior!=null) {
behavior.onNestedPreScroll(mCoordinatorLayout, appBarLayout, mRecyclerView, 0, (int) mRecyclerView.getY(), new int[]{0, 0});
mRecyclerView.getLayoutManager().scrollToPosition(selectedPosition);
mRecyclerView.scrollToPosition(selectedPosition);
}
}
任何想法,如何将回收者视图项目拉到屏幕顶部?
答案 0 :(得分:0)
CoordinatorLayout.Behaviour仅适用于NestedScroll事件。当您尝试以编程方式滚动RecyclerView时,将其视为普通滚动。
在下面的行中编写以通知RecyclerView启动NesteadScroll,并使用 ViewCompat.SCROLL_AXIS_VERTICAL 和 ViewCompat.TYPE_NON_TOUCH
ViewCompat.SCROLL_AXIS_VERTICAL::指示沿垂直轴滚动。 ViewCompat.TYPE_NON_TOUCH::指示手势的输入类型是由用户非触摸屏幕引起的。这通常是由于扑杀而来。
recycler_view.startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_NON_TOUCH)
recycler_view.smoothScrollBy(0,200)