AndroidStaggeredGrid
AndroidStaggeredGrid copied to clipboard
An Android staggered grid view which supports multiple columns with rows of varying sizes.
When i placed a StaggeredGridView inside a weighted layout like so: ``` ``` The grid only shows 1 column despite the setting for 5. Upon further inspection, all 5 columns...
This happens due to missing support for context menus. ``` F/Uncaught exception( 8794): java.lang.NullPointerException F/Uncaught exception( 8794): at android.widget.AbsListView.showContextMenuForChild(AbsListView.java:3587) F/Uncaught exception( 8794): at android.view.ViewGroup.showContextMenuForChild(ViewGroup.java:668) F/Uncaught exception( 8794): at android.view.View.showContextMenu(View.java:4710) F/Uncaught...
Hi, when I add setColumnCount(3) follow mGridView.addHeaderView(header); mGridView.addFooterView(footer); mAdapter = new SampleAdapter(this, R.id.txt_line1); It just show one column, and the item overlay each other.see the screenshot. 
Is there any way to register SGV for floating context menu? I tried with `registerForContextMenu(mGridView)` but its not working? Can you help me out.
Your library is gorgeous. I'm pretty touched with it. It seems like perfect. But I need 'fast scroll mode'. Do you have a plan to make to be enable 'fast...
I want multiple select in StaggeredGridView i.e, batch contextual actions. I tried but it didn't work, so is it supported or am doing it wrong somewhere? Here is my code...
Trying to execute your sample app, When I click on "Staggered Grid View" button I get this error: 01-23 12:10:22.546: E/AndroidRuntime(26874): FATAL EXCEPTION: main 01-23 12:10:22.546: E/AndroidRuntime(26874): java.lang.RuntimeException: Unable to...
Hi, I need to implement auto-scroll with staggered grid but doesn't work, nothing appens when the method is called. Thank you for any suggestion
Now that the SGV supports an `OnItemClickListener` it should have support for drawing the selector. The following two properties have no effect on the SGV: `android:listSelector` `android:drawSelectorOnTop`
Hi, I have run the staggered gridview demo successfully. Now I want to add a edittext below staggered gridview in my layout file. on keyboard go listener i want to...