gpt4 book ai didi

android - NestedScrollView 内的 ViewPager 内的 ScrollView 不滚动

转载 作者:行者123 更新时间:2023-11-29 02:18:23 26 4
gpt4 key购买 nike

我有一个 Activity,其中包含一个 Nested ScrollView。在这个 NestedScrollView 里面有一个 ViewPager。每个页面都有一个包含 ScrollView 的 View 。这个最里面的 ScrollView 根本不滚动。如何在这个最里面的 ScrollView 中启用滚动行为

这是 Activity 的xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
tools:context=".MainActivity">

<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<androidx.viewpager.widget.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="300dp" />

<ImageView
android:layout_width="400dp"
android:layout_height="400dp"
android:layout_marginTop="10dp"
android:src="@drawable/ic_launcher_background" />

<ImageView
android:layout_width="400dp"
android:layout_height="400dp"
android:layout_marginTop="10dp"
android:src="@drawable/ic_launcher_background" />

<ImageView
android:layout_width="400dp"
android:layout_height="400dp"
android:layout_marginTop="10dp"
android:src="@drawable/ic_launcher_background" />

<ImageView
android:layout_width="400dp"
android:layout_height="400dp"
android:layout_marginTop="10dp"
android:src="@drawable/ic_launcher_background" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>

</androidx.constraintlayout.widget.ConstraintLayout>

这是view pager的xml

    <?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:orientation="vertical">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="800dp" />

</androidx.core.widget.NestedScrollView>

最佳答案

在您的 NestedScrollView 中添加 android:fillViewport="true"。希望问题能得到解决

关于android - NestedScrollView 内的 ViewPager 内的 ScrollView 不滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58414158/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com