AndroidStaggeredGrid icon indicating copy to clipboard operation
AndroidStaggeredGrid copied to clipboard

An Android staggered grid view which supports multiple columns with rows of varying sizes.

Results 101 AndroidStaggeredGrid issues
Sort by recently updated
recently updated
newest added

GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

I found this bug in Genymotion, but later same thing happens on real device. I connect mouse via OTG and scroll page with mouse scroller wheel, and StaggeredGridView don't create...

All the images and text are reloaded when I scroll. Sense I have to download all the data I wanted to avoid this "issue". If I use if (convertView ==...

03-09 00:38:45.667 2486-2486/com.bitchy W/art: Before Android 4.1, method void com.etsy.android.grid.ExtendableListView.rememberSyncState() would have incorrectly overridden the package-private method in android.widget.AdapterView 03-09 00:38:45.667 2486-2486/com.bitchy W/art: Before Android 4.1, method void com.etsy.android.grid.ExtendableListView.fillGap(boolean) would...

I'm getting an error just doing setContentView. Here is my list layout: ``` ``` Here the staktrace: ``` java.lang.NullPointerException: Attempt to invoke interface method 'int android.widget.ListAdapter.getCount()' on a null object...

bug

``` mGridView.setOnItemClickListener(new StaggeredGridView.OnItemClickListener() { @Override public void onItemClick(AdapterView adapterView, View view, int i, long l) { // do sth. here } }); ```

I used the column count "2" for both of portrait and landscape. When the device is rotated, listview was overlapped. I finally found what is the cause of the problem...

Problem when using Esty with Universal image loader, I fix it with Picasso without any gradle changes

I'm loading a lot of data in my `StaggeredGridView` and reloading it after a configuration change (i.e orientation change) would take a long time. So I have marked to handle...