我在NestedScrollView中使用ListView。 列表展开以匹配父级,但现在没有滚动
这是我的布局:
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:id="@+id/workExperienceListLV"
android:divider="@null"
android:listSelector="@android:color/transparent"
android:dividerHeight="0dp"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
这一行没有帮助:
android:fillViewport="true"
感谢您的帮助!
答案 0 :(得分:0)
使用ViewCompat.setNestedScrollingEnabled()
,你应该没问题。
答案 1 :(得分:-2)
这是因为在scrollview(NestedScrollView)中使用了ListView.becacuse都有滚动,如果你想滚动它,你只需将listview的宽度减少到屏幕的一半。 喜欢这个..
<ListView
android:layout_width="70dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:id="@+id/workExperienceListLV"
android:divider="@null"
android:listSelector="@android:color/transparent"
android:dividerHeight="0dp"/>