NestedScrollView内的StaggeredGrid不起作用

时间:2015-11-02 11:16:54

标签: android staggered-gridview nestedscrollview

我开发了一个Android应用程序,因为我使用StaggeredGridView来显示Feeds。通常它的工作正常,但是当我放入NestedScrollView时,我看不到数据。

那么,如何解决这个问题。

XML文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:materialdesign="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusableInTouchMode="false"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <com.acrobat.widgets.MySwipeRefreshLayout
            android:id="@+id/swipe_refresh_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <com.etsy.android.grid.StaggeredGridView
                android:id="@+id/gvFeed"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:column_count="2"
                app:column_count_portrait="2"
                app:item_margin="8dp" />
        </com.acrobat.widgets.MySwipeRefreshLayout>
    </LinearLayout>

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

感谢。

0 个答案:

没有答案