maurycyw / StaggeredGridView

A modified version of Android's experimental StaggeredGridView. Includes own OnItemClickListener and OnItemLongClickListener, selector, and fixed position restore.

Home Page:https://github.com/maurycyw/StaggeredGridViewDemo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot show content below staggered gridview

BasimMajeed opened this issue · comments

Currently I have following code but it doesn't show textView content on screen

<com.origamilabs.library.views.StaggeredGridView
    android:id="@+id/sgv_medications"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/white"
    staggered:drawSelectorOnTop="true"
    staggered:numColumns="2" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_below="@+id/sgv_notes"
    android:text="Demo" />

I have the same problem. Have you resolve it ?