如何使父视图和子视图都可滚动

How to make both parent and child view scrollable

我有一个包含 SpinnerLinearlayout 的视图。 Linearlayout 作为子布局的父布局。子布局以编程方式膨胀。子视图有一个 CardViewTextView 以及 CardView 中的一个列表视图。

我的问题是我想让整个视图(使用 SpinnerLinearLayout 的视图)都可以滚动,而且还有子视图。但是每当我尝试在 CardView 内滚动列表视图时,整个视图都会滚动。当用户尝试滚动 ListView 时,我的子布局中的视图应该只滚动。

这是我的父布局:

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

    <com.weiwangcn.betterspinner.library.material.MaterialBetterSpinner
        android:id="@+id/shelfShareSelectionSpiiner"
        android:layout_width="@dimen/_180sdp"
        android:layout_height="@dimen/_40sdp"
        android:layout_gravity="center"
        android:hint="Select Category" />

    <LinearLayout
        android:id="@+id/shelfShareLinearlayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_marginLeft="@dimen/_5sdp"
        android:layout_marginStart="@dimen/_5sdp"
        android:padding="@dimen/_10sdp" />


</LinearLayout>
</ScrollView>

这是我的子视图:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    android:id="@+id/shelfShareMasterLL"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.CardView
        android:id="@+id/frontalRodShareCardView"

        android:layout_width="@dimen/_292sdp"
        android:layout_height="@dimen/_250sdp"
        android:layout_marginLeft="@dimen/_4sdp"
        android:layout_marginRight="@dimen/_4sdp"
        android:layout_marginStart="@dimen/_4sdp"
        android:layout_marginTop="@dimen/_8sdp"
        app:cardElevation="@dimen/_3sdp"
        app:cardUseCompatPadding="true"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <RelativeLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/shelfShareMasterRL"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <TextView
                android:id="@+id/shelfShareHeadingTextView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"

                android:layout_marginLeft="@dimen/_10sdp"
                android:layout_marginTop="@dimen/_10sdp"
                android:text="Frontal Rod Share"
                android:textSize="@dimen/_10ssp" />


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

            </ListView>

        </RelativeLayout>

    </android.support.v7.widget.CardView>

</LinearLayout>

谢谢。

我认为要实现这一点,你需要为listview实现ontouchListener。并且在这个监听器中你需要阻止父 scrollview touchevent。

shelfShareProductListView.setOnTouchListener(new OnTouchListener() {
    // Setting on Touch Listener for handling the touch inside ScrollView
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        // Disallow the touch request for parent scroll on touch of child view
        v.getParent().requestDisallowInterceptTouchEvent(true);
        return false;
    }
});