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 –