Questions tagged [staggered-gridview]

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

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

The StaggeredGridView was developed due to requirements for the Etsy app not met by any existing Android libraries. Namely a stable implementation with the ability to have a different number of columns in landscape & portrait, to sync grid position across orientation changes and support for headers & footers.

The most famous example of a staggered gridview is probably the one from etsy: https://github.com/etsy/AndroidStaggeredGrid

195 questions
0
votes
2 answers

Add text below the image in staggered gridview

I am implementing staggered gridview in one of my app. I am following this tutorial (http://www.technotalkative.com/lazy-productive-android-developer-part-6-staggered-gridview/). but what i want is, adding the text below the image. So can you please…
rank
  • 83
  • 7
0
votes
0 answers

getView() getting called only 3 times when getCount() returns 9 on 7 inch Tablet Portrait mode when using Sraggered GridView

I am trying to implement StaggeredGridView in 7 inch Samsung Tablet, but it is only displaying 3 items out of 9 when column count is set to 2. It displays 4 items out of 9 when column count is set to 3. The same thing works fine in phones but in 7…
0
votes
1 answer

Android etsy StaggeredGridView library add load more in footer and pull to refresh in header

How can I add loading indicator to display getting more items from server on etsy StaggeredGridView's footer when scroll down the last item of StaggeredGridView Also , I want to add pull to refresh in StaggeredGridView header
0
votes
1 answer

Using Etsy Android Staggered gridview

Iam using https://github.com/etsy/AndroidStaggeredGrid to achieve a StaggeredGridView for my app. I get a NullPointerException when I try to initialize my DynamicHeightImageView. I cant figure out what is going wrong. Here is my…
user3146095
  • 419
  • 2
  • 7
  • 25
0
votes
0 answers

Content has view with id attribute 'android.R.id.list' that is not a ListView class in ListFragment

I am creating a StaggeredGridView using https://github.com/etsy/AndroidStaggeredGrid . But when I try to initialze the StaggeredGridView like follows:- public class HomeFragment extends ListFragment { @Override public View…
user3146095
  • 419
  • 2
  • 7
  • 25
0
votes
1 answer

Lazy loading Images from JSON not downloaded in SD Card

I am writing a program in which want to download images from online url and want to show in Staggered GridView format, i found Staggered GridView code from here and using this link to download images from online link in JSON format But the issue is,…
Sophie
  • 2,594
  • 10
  • 41
  • 75
0
votes
1 answer

Etsy's Android Staggered Gridview - drawSelectorOnTop

I'm trying to use Etsy's Staggered Gridview (https://github.com/maurycyw/StaggeredGridView), and I have it working mostly as expected, except I'm having an issue trying to get the selector to draw on top. I've tried using…
Paul Ruiz
  • 2,396
  • 3
  • 27
  • 47
0
votes
3 answers

Use Etsy's StaggeredGridView in Eclipse

I wanted to use Etsy's StaggeredGridView in a project of mine on Eclipse. Their gitHub page doesn't provide instructions to import/setup their project in Eclipse. If anyone has successfully done this and can share the steps, it would help a lot!…
user1536435
  • 129
  • 8
-1
votes
1 answer

How to achieve scrollable grid view exactly like in this photo using flutter

Staggered Grid View can achieve sizing and everything, but it always starts placing items from the top, just under app bar. How to achieve to add that text (Found 10 items for example) and then start displaying items in grid view?
-1
votes
1 answer

Flutter Staggered Grid View Pin tiles

I'm using a staggered grid (flutter staggered grid view package) to display notes. It all works fine but I can't find any information on pinning tiles, like 'google keep' notes. The notes are stored in a database (sqlite) and it's no problem to add…
Babsky
  • 23
  • 1
  • 6
-1
votes
1 answer

How to use stack widget inside a StaggeredGridView in flutter?

om/cFMse.png why images get weird size when i use stack widget inside StaggeredGridView.. When i remove the stack from the grid view the layout seems perfectly fine . am i using the layout in a wrong way? new StaggeredGridView.countBuilder( …
-1
votes
1 answer

Android how to achieve this type of layout with rows and col span

Requirement: I should be able to scroll entire view if left view is visible or not (all components should scroll at a time if i scroll anywhere with in the view). By clicking on show/hide left view button button it should be able to hide or show…
-1
votes
1 answer

Staggered Gridview ( Etsy ) with Volley Network Image View

I would like to implement Etsy's Staggered Gridview. Problem is, that i don't know how to combine Volley's NetworkImage View with this. I get the Imageurl from a Json file, for that i'm using volley. Here is my MainActivity.class import…
Tobias
  • 1
  • 2
-1
votes
1 answer

Error inflating class com.origamilabs.library.views.StaggeredGridView

I m trying to use StaggeredGridView on my project with ActionBarSherlock.But i got this error when i try to inflate main_screen.xml to main.xml. View view = inflater.inflate(R.layout.main_screen, container, false); I have these log errors when…
-2
votes
3 answers

Crash with Staggered Layout Manager of Recycler View

I load recycler normally and data is shown properly. But I have requirement to recreate my actvity on certain condition. When I recreate my activity, Recycler view is initialized again and is loaded with new set of data. But this time I get a crash.…
1 2 3
12
13