2017-12-07 8 views
0

私はSpinnerLinearlayout intを持つビューを持っています。 Linearlayoutは、子レイアウトの親として機能します。子レイアウトはプログラムによって膨張されます。子ビューにはCardViewTextView、リストビューはCardViewとなっています。親ビューと子ビューの両方をスクロール可能にする方法

私の問題は、全体ビュー(SpinnerおよびLinearLayoutのビュー)をスクロール可能かつチャイルドビューにしたいということです。しかし、その中のリストビューをスクロールしようとすると、全体のビューがスクロールします。ユーザーがListViewをスクロールしようとすると、私の子レイアウト内のビューはスクロールするだけです。

これは私の親のレイアウトです:

<?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> 

ありがとう:

<?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> 

これは私の子ビューです。

+0

ScrollViewではなくNestedScrollviewを使用しましたか? –

+0

はい、あります。親レイアウトで入れ子になったスクロールビューをscrollviewに置き換えましたが、うまくいきませんでした。 – 3iL

答えて

2

これを実現するには、リストビューのためにontouchListenerを実装する必要があると思います。そして、このリスナーでは、親スクロールビューを防ぐ必要があります。

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; 
    } 
}); 
+0

ありがとう!これはcharmのように動作します:) – 3iL

関連する問題