2017-05-09 15 views
2

それは本当ですか?私はネストされたスクロールビューを使用して、私の活動の中でリストビューをスクロールしたい。助けてください。事前のおかげでネストされたスクロールビュー内のスクロールビューは動作しません

<android.support.v4.widget.NestedScrollView 
    android:id="@+id/login_form" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

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

     <ScrollView 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 

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

     </ScrollView> 

    </LinearLayout> 

</android.support.v4.widget.NestedScrollView> 

+0

このレイアウトは奇妙です - あなたは3層のスクロールビュー(NestedScrollView、ScrollView&ListView)を持っています。大きな疑問は、なぜそれらのすべてが必要なのかです。 –

+0

まず 'nestedscrollview'でフォームを作成し、' listview'でチェックボックスを使っていくつかのオプションをチェックする必要があります。私はあなたが私の意味を理解することを願っています@ DoronYakovlev-Golani –

答えて

4

それは今の仕事だ、ちょうどscrollviewを削除し、listviewandroid:nestedScrollingEnabled="true"に追加します。

+0

私のために働くありがとう –

関連する問題