嵌套滚动视图中的滚动视图不起作用
Scroll View inside Nested Scroll View does't work
是真是假?我也想通过使用嵌套滚动视图在 activity 中的列表视图上滚动。请帮忙。提前致谢
<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>
现在可以了,只需删除 scrollview
并添加 listview
android:nestedScrollingEnabled="true"
。
是真是假?我也想通过使用嵌套滚动视图在 activity 中的列表视图上滚动。请帮忙。提前致谢
<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>
现在可以了,只需删除 scrollview
并添加 listview
android:nestedScrollingEnabled="true"
。