小编典典

滚动视图中的 Android 列表视图

all

我有一个 android 布局,其中包含scrollView许多元素。在底部scrollView我有一个listView然后由适配器填充。

我遇到的问题是 android
将其排除在外,listView因为scrollViewscrollView已经具有可滚动的功能。我希望listView只要内容是并且主滚动视图可以滚动。

我怎样才能实现这种行为?

这是我的主要布局:

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="2"
    android:fillViewport="true"
    android:gravity="top" >

    <LinearLayout
        android:id="@+id/foodItemActvity_linearLayout_fragments"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
    </LinearLayout>

</ScrollView>

然后我以编程方式将我的组件添加到 id:
的线性布局中foodItemActvity_linearLayout_fragments。下面是加载到该线性布局中的视图之一。这是卷轴给我带来麻烦的一个。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
       android:id="@+id/fragment_dds_review_textView_label"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Reviews:"
       android:textAppearance="?android:attr/textAppearanceMedium" />

   <ListView
       android:id="@+id/fragment_dds_review_listView"
       android:layout_width="match_parent"
       android:layout_height="wrap_content">
   </ListView>
</LinearLayout>

然后我的适配器会填满这个列表视图。

这是我单击主滚动视图时来自 android 层次结构查看器的图像:

滚动视图中的 Android
列表视图

如您所见,它不包括评论列表视图。

我应该能够向下滚动页面并看到 8 条评论,但它只显示这 3 条评论,我可以滚动评论所在的小部分。我想要一个全局页面滚动


阅读 104

收藏
2022-04-27

共1个答案

小编典典

让任何子视图在 ScrollView 内滚动。任何像 ListView、RecyclerView 等的东西。你只需要在你当前的 xml中用 _ androidx.core.widget.NestedScrollView _ 替换ScrollView ,然后神奇的事情就会发生。 _ _

下面是一个示例 xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.appcompat.widget.LinearLayoutCompat
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="16dp"
        android:paddingBottom="20dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Recycler View inside a Scroll View"
            android:textColor="@color/black"
            android:textSize="@dimen/_20sp"
            android:textStyle="bold" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="Below is a Recycler View as an example."
            android:textSize="16sp" />

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            app:layout_constraintTop_toBottomOf="@id/et_damaged_qty" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="This textview automatically goes below the Recycler View."
            android:textSize="16sp" />
    </androidx.appcompat.widget.LinearLayoutCompat>
</androidx.core.widget.NestedScrollView>

现在,您可以摆脱为解决嵌套滚动所做的所有丑陋黑客行为。

2022-04-27