我有一个ScrollView
,通过拖放操作放置在nestedScrollview
内部。但是,当我尝试使用拖放到列表的最后一个元素并尝试将其移动到列表的顶部(第一个元素不可见)时,滚动视图不会自动滚动。
但是,如果我要删除NestedScrollView
并仅保留ScrollView
,则自动滚动会起作用。该如何解决?
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:overScrollMode="never"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:paddingTop="@dimen/margin_medium_32dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="@dimen/margin_general_16dp"
android:paddingEnd="@dimen/margin_general_16dp"
android:text="@string/favorite_stores_title"
android:textAlignment="center"
android:textColor="@color/smokyblack"
android:textSize="@dimen/text_size_big" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_general_16dp"
android:paddingStart="@dimen/margin_general_16dp"
android:paddingEnd="@dimen/margin_general_16dp"
android:paddingBottom="@dimen/margin_medium_32dp"
android:text="@string/favorite_stores_subtitle"
android:textAlignment="center"
android:textColor="@color/grullo"
android:textSize="@dimen/text_size_15sp" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/margin_small_1dp"
android:background="@color/isabelline" />
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/multiple_stores_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never"
android:scrollbars="none"
android:nestedScrollingEnabled="false" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>