如何在NestedScroll、ConstraintLayout中设置ListView的滚动?
How can I set ListView's scroll in NestedScroll, ConstraintLayout?
我在 ListView
上添加了我的项目。
我可以使用 NestedScroll's
滚动,但我无法显示我的 listView's
项,我只能显示 3 个。
我想要一个类似 Twitter 个人资料页面的设计
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".ProfileFragment">
<android.support.design.widget.AppBarLayout...>
<android.support.design.widget.CollapsingToolbarLayout
...>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbarProfile"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
<ListView
android:id="@+id/listViewProfile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">
</ListView>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
启用您的 listview
的 nestedScrolling
:
<ListView
android:id="@+id/listViewProfile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="true" \add this line
android:scrollbars="vertical">
</ListView>
我在 ListView
上添加了我的项目。
我可以使用 NestedScroll's
滚动,但我无法显示我的 listView's
项,我只能显示 3 个。
我想要一个类似 Twitter 个人资料页面的设计
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".ProfileFragment">
<android.support.design.widget.AppBarLayout...>
<android.support.design.widget.CollapsingToolbarLayout
...>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbarProfile"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
<ListView
android:id="@+id/listViewProfile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">
</ListView>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
启用您的 listview
的 nestedScrolling
:
<ListView
android:id="@+id/listViewProfile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="true" \add this line
android:scrollbars="vertical">
</ListView>