3

我在 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"

谢谢您的帮助!

4

2 回答 2

0

使用ViewCompat.setNestedScrollingEnabled(),你应该没问题。

于 2017-12-13T00:26:47.383 回答
-3

这是因为在滚动视图(NestedScrollView)中使用了 ListView。因为两者都有滚动,如果你想滚动它,你只需将 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"/>
于 2016-04-13T09:48:50.137 回答