【发布时间】:2019-10-27 01:30:59
【问题描述】:
我在滚动视图中有一个嵌套滚动视图,它正在工作,但我不希望出现这样的行为:如果我在嵌套滚动视图中滚动并且到达顶部或底部,滚动会自动继续与“父级”一起进行“滚动视图。 我觉得这非常烦人。
具有基本活动和 content_main.xml 内容的新应用项目
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_margin="5dp"
android:background="@color/colorPrimary">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Root"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_margin="5dp"
android:background="@color/colorAccent"/>
<ScrollView
android:id="@+id/scrollViewRoot"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_orange_dark"
android:paddingRight="40dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_margin="5dp"
android:background="@color/colorPrimary">
<TextView
android:text="Nested1"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/textViewNested1"
android:layout_margin="5dp"
android:background="@color/colorAccent"/>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="1000dp" android:fillViewport="true"
android:background="@android:color/black">
<LinearLayout android:layout_width="match_parent"
android:layout_height="2000dp"
android:orientation="vertical"
android:layout_margin="5dp"
android:background="@color/colorPrimaryDark">
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="1800dp" android:id="@+id/textView3"
android:layout_margin="5dp"
android:background="@color/colorAccent"
/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
<TextView
android:text="Nested2"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/textViewNested2"
android:layout_margin="5dp"
android:background="@color/colorAccent"
/>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="1000dp" android:fillViewport="true"
android:background="@android:color/black">
<LinearLayout android:layout_width="match_parent"
android:layout_height="2000dp"
android:orientation="vertical"
android:layout_margin="5dp"
android:background="@color/colorPrimaryDark">
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="1800dp" android:id="@+id/textView4"
android:layout_margin="5dp"
android:background="@color/colorAccent"
/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>
</ScrollView>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
错误:如果到达顶部或底部,则在嵌套内滚动可以滚动父滚动视图。
右:在嵌套内滚动不能滚动父滚动视图,即使达到顶部或底部
【问题讨论】:
标签: android kotlin scrollview nestedscrollview