40

CoordinatorLayout在我的活动页面中使用。在ListView应用程序栏下方。但是当我使用ListView而不是NestedScrollView. 如果我把ListView里面NestedScrollViewListView是不是扩大

4

10 回答 10

72

您可以在添加时修复它addtribute android:fillViewport="true":) android.support.v4.widget.NestedScrollView。这是我的代码。

<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/list_myContent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="vertical"
        >
    </ListView>

</android.support.v4.widget.NestedScrollView>
于 2015-12-07T03:45:17.613 回答
50

从 Lollipop 开始,您可以使用

setNestedScrollingEnabled(true);

在您的 ListView/GridView/ScrollableView 上。从文档

启用或禁用此视图的嵌套滚动

如果您需要向后兼容旧版本的操作系统,则必须使用RecyclerView. 你可以在这里阅读更多

编辑。 ViewCompat有静态方法setNestedScrollingEnabled(View, boolean)。例如。

ViewCompat.setNestedScrollingEnabled(listView, true)

感谢@Dogcat您指出

于 2016-02-04T10:26:34.927 回答
35

为了CoordinatorLayout正常工作,您需要滚动子级来实现NestedScrollingChild。这样的类是NestedScrollViewRecyclerView

简而言之 - 只需将 aRecyclerView用于您的滚动内容,它就会正常工作:)

PS 作为旁注,我看不出你为什么要使用 a 的理由ListView。我知道这是一种习惯,而且设置起来更容易(因为你已经做过很多次了),但RecyclerView无论如何,使用 a 是推荐的方式。

于 2015-10-01T07:02:21.963 回答
14

这对我有用。

设置android:fillViewport="true"NestedScrollView

将一个布局元素作为子元素添加到NestedScrollView. 就我而言 ,LinearLayout然后设置为android:nestedScrollingEnabled="true"ListViewListViewLinearLayout

好走

于 2018-02-14T11:32:22.493 回答
10

只需放入android:fillViewport="true"你的NestedScrollView标签

于 2016-04-03T10:03:06.500 回答
9

您的列表视图将滚动。希望有所帮助。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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.support.v4.widget.NestedScrollView
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:fillViewport="true"
         app:layout_behavior="@string/appbar_scrolling_view_behavior">

         <ListView
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:nestedScrollingEnabled="true">
         </ListView>
    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>
于 2018-05-18T05:24:23.850 回答
3

下面的代码对我有用:

ViewCompat.setNestedScrollingEnabled(listView, true);

ListView应该在里面NestedScrollView

于 2018-03-06T07:05:11.927 回答
1

如果可能的话,将您的 ListView 替换为RecyclerView创建您的 customListView 并设置onMeasureListView

 public NonScrollListView(Context context) {
        super(context);
    }

    public NonScrollListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public NonScrollListView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
                Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
        ViewGroup.LayoutParams params = getLayoutParams();
        params.height = getMeasuredHeight();
    }

ListView将无法再滚动并且可以在内部使用NestedScrollView

于 2018-12-13T09:16:24.547 回答
0

您不能在嵌套滚动视图中滚动列表视图。将 Recyclerview 与嵌套滚动视图一起使用

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorAccent"
        android:orientation="horizontal">

        <de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/profile_image"
            android:layout_width="76dp"
            android:layout_height="76dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_centerVertical="true"
            android:layout_marginLeft="24dp"
            android:layout_marginStart="24dp"
            android:src="@drawable/profile"
            app:border_color="#FF000000" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_marginLeft="20dp"
            android:layout_toRightOf="@+id/profile_image"
            android:gravity="center_vertical"
            android:orientation="vertical">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="IRFAN QURESHI"
                android:textSize="20sp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="irfan123@gmail.com" />
        </LinearLayout>

        <ImageView
            android:layout_marginLeft="50dp"
            android:layout_gravity="center_vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_delete_black" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"

        android:background="@color/colorPrimary"
        android:gravity="center_horizontal"
        android:padding="30dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:background="@drawable/login_email_bg_round_rect_shape"
            android:gravity="center_horizontal"
            android:padding="10dp"
            android:text="POST A QUERY" />
    </LinearLayout>

        <!--<ListView
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </ListView>-->

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="vertical" />


    <RelativeLayout
        android:background="@color/colorAccent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:padding="8dp"
            android:gravity="center_vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="SIGN OUT" />
        <ImageView
            android:paddingTop="5dp"
            android:layout_marginRight="40dp"
            android:layout_alignParentRight="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_delete_black" />
    </RelativeLayout>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>

</android.support.v4.widget.NestedScrollView>
于 2016-11-21T11:46:48.103 回答
0

只需在 NestedScrollView 中添加 android:nestedScrollingEnabled="true" 标签。

<android.support.v4.widget.NestedScrollView
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:scrollbars="none"
  android:nestedScrollingEnabled="true">
   <ListView
      android:id="@+id/list_myContent"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:scrollbars="vertical">
  </ListView>

于 2016-12-20T06:10:56.490 回答