无法滚动的GridView内嵌在nestedscrollview

问题描述 投票:0回答:2

我的GridView不会滚动。我在gridview的10个项目,但只有6显示,在截止一些在底部的项目。

这里是GridView控件的布局:

<?xml version="1.0" encoding="utf-8"?>

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:id="@+id/appbar_layout"
    android:layout_height="@dimen/app_bar_height"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginStart="@dimen/expanded_toolbar_title_margin_start"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <ImageView
            android:id="@+id/image_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerInside"
            android:src="@drawable/yelp"
            app:layout_collapseMode="parallax"
            app:layout_collapseParallaxMultiplier="0.7" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

    </android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:id="@+id/nestedscrollview"
    android:layout_height="match_parent"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <RelativeLayout
        android:id="@+id/gridContainerLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >


        <GridView
            android:id="@+id/grid"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:columnWidth="100dp"
            android:gravity="center"
            android:listSelector="#00000000"
            android:numColumns="auto_fit"
            android:stretchMode="columnWidth"
            />

        <ProgressBar
            android:id="@+id/progressBar1"
            style="?android:attr/progressBarStyleLarge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
           android:layout_centerHorizontal="true" />

    </RelativeLayout>
</android.support.v4.widget.NestedScrollView>

这里有两张照片的问题。当我向上滚动它推动Yelp的图像向上,但它不会做嵌套滚动在GridView上,为什么呢?

enter image description here

enter image description here

更新:我也试着这样做:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            mGridView.setNestedScrollingEnabled(true);
        }

并开始着手API棒棒糖。但我需要它在旧设备也运行。为什么它不会滚动棒棒糖之前的设备?

android gridview
2个回答
2
投票

您可以使用RecyclerView与网格布局,而不是GridView控件。然后禁用嵌套滚动,可以预先棒棒糖版本来完成。


1
投票

GridView有自己内在的滚动行为。所以,你为什么要使用NestedScrollView?点击下面的链接查看GridViews'文档..

https://developer.android.com/guide/topics/ui/layout/gridview.html

这就是为什么GridView与它冲突。

© www.soinside.com 2019 - 2024. All rights reserved.