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>
このレイアウトは奇妙です - あなたは3層のスクロールビュー(NestedScrollView、ScrollView&ListView)を持っています。大きな疑問は、なぜそれらのすべてが必要なのかです。 –
まず 'nestedscrollview'でフォームを作成し、' listview'でチェックボックスを使っていくつかのオプションをチェックする必要があります。私はあなたが私の意味を理解することを願っています@ DoronYakovlev-Golani –