ListView没有在NestedScrollView中扩展

时间:2015-10-01 06:56:19

标签: android android-coordinatorlayout android-appbarlayout nestedscrollview

我在活动页面中使用CoordinatorLayout。其中,应用栏下方有ListView。但是当我使用ListView而不是NestedScrollView时,它无效。如果我将ListView放在NestedScrollView内,ListView不会扩展

11 个答案:

答案 0 :(得分:63)

您可以在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>

答案 1 :(得分:38)

在Lollipop之后你可以使用

setNestedScrollingEnabled(true);
ListView / GridView / ScrollableView上的

。从文档

  

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

如果您需要向后兼容旧版操作系统,则必须使用RecyclerView。您可以阅读更多here

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

ViewCompat.setNestedScrollingEnabled(listView, true)

感谢@Dogcat指出

答案 2 :(得分:32)

要使CoordinatorLayout正常工作,您需要滚动子项来实现NestedScrollingChild。这些类是NestedScrollViewRecyclerView

简单地说 - 只需使用RecyclerView来滚动内容,它就会正常运行:)

P.S。作为旁注,我没有看到为什么你再使用ListView的原因。我知道这是一种习惯,而且设置起来比较容易(因为你已经多次完成),但是建议使用RecyclerView

答案 3 :(得分:11)

只需将android:fillViewport="true"放入NestedScrollView标记

即可

答案 4 :(得分:5)

这对我有用。

android:fillViewport="true"

上设置NestedScrollView

将一个布局元素作为子项添加到NestedScrollView。在我的情况下LinearLayout然后 在android:nestedScrollingEnabled="true"上设置ListViewListView成为LinearLayout

的孩子

很高兴

答案 5 :(得分:5)

你的listview会滚动。希望有所帮助。

integer

答案 6 :(得分:1)

以下代码对我有用:

ViewCompat.setNestedScrollingEnabled(listView, true);

您的ListView应位于NestedScrollView

答案 7 :(得分:0)

您无法在nestedscrollview内滚动listview.Use Recyclerview with nestedscrollview

<?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>

答案 8 :(得分: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>

答案 9 :(得分:0)

我发现Prokash Sarkar的这个解决方案非常适合扩展ListView的内容,以便它可以在NestedScrollView中正确滚动。

Can't scroll ListView in its parent NestedScrollView - Android

希望这有助于其他搜索NestedScrollView和ListView的人。

答案 10 :(得分:0)

如果可能,用RecyclerView替换ListView,否则创建您的customListView并将onMeasure中的ListView设置为此:

 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内部使用。