gridlayoutmanager Questions
2
Solved
What I want to achieve: I want to have a view inside a scrollable layout (Recyclerview with GridlayoutManager) with tiles (Views) in it. Dragging and dropping an item inside of the RecyclerView sho...
Gilbertogilbertson asked 27/1, 2016 at 13:49
3
Solved
I want to implement grid-like layout with section headers. Think of https://github.com/TonicArtos/StickyGridHeaders
What I do now:
mRecyclerView = (RecyclerView) view.findViewById(R.id.grid);
mLa...
Garderobe asked 11/11, 2014 at 16:12
3
I am having trouble with one of my adapters. I have a selection of images which I display in a grid like the following:
This works well when I have a single screen worth of items and they all s...
Raccoon asked 7/11, 2016 at 3:11
5
Solved
I'm using StaggeredGridLayoutManager for my image gallery. I've set setReverseLayout(true), so that images get stacked from bottom.
The problem I'm facing is that at initialization of app, the sc...
Romaic asked 7/3, 2016 at 12:55
2
Solved
I have a RecyclerView and GridLayoutManager with 2 columns.
How can I force LayoutManager to be according with template on the first screenshot? Now I have result as on the 2th screenshot.
Need res...
Stephaniestephannie asked 24/1, 2016 at 17:5
2
I'm using recycler view with GirdLayout Manager for creating bus layout. My problem is with spacing, I'm populating data according to row column.
This is how I'm getting layout:
This is how I want...
Carolyn asked 9/9, 2016 at 12:46
1
Solved
I am using a RecyclerView with GridLayoutManager to show some items in grid pattern. It's working good and showing items in 2 columns inside grid.
But when the number of items is odd, I want that ...
Infinitesimal asked 3/9, 2016 at 5:40
5
I have a vertical recyclerview (with a GridLayoutManager) inside another recyclerview (with LinearLayoutManager). The problem I am facing right now is that, the inner recyclerview (with GridLayoutM...
Chare asked 21/7, 2016 at 18:55
1
Solved
I need to implement something like this:
Seems like StaggeredGridLayoutManager | GridLayoutManager can not do it,
how to achieve it for now?
GridView has good performance?
Unblessed asked 25/7, 2016 at 14:3
0
I use recyclerview with grid layoutmanager
I don't add ItemDecoration
GridLayoutManager gridLayoutManager = new GridLayoutManager(TestResultActivity.this, 4, GridLayoutManager.HORIZONTAL, false);
...
Overlooker asked 1/7, 2016 at 10:24
3
Update #1
Added hasStableIds(true) and updated Picasso to version 2.5.2.
It does not solve the issue.
Reproduction:
RecyclerView with GridLayoutManager (spanCount = 3).
List items are CardViews ...
Epistasis asked 27/3, 2015 at 22:48
2
I need to create a horizontal scrolling grid that can allocate items with different width and different height. StaggeredGridLayoutManager can handle different width but it won't let me have items ...
Ecumenicist asked 5/12, 2014 at 11:9
2
Solved
I've seen workarounds with LinearLayoutManager, but not with GridLayoutManager. Any ideas?
Bout asked 9/6, 2015 at 18:40
1
Solved
I have a RecyclerView implemented using the GridLayoutManager.
Depending on how many items are in the data set, the spanCount is between 1-4. The item widths change depending on the spanCount. If ...
Gman asked 17/11, 2015 at 19:55
1
Background
I have an app that shows a list of items in a grid-like way, yet not exactly...
The problem
Some of the items have a different height, so the ones near them should gain the same heig...
Cards asked 16/11, 2015 at 6:33
3
What's the best and easiest way to decorate RecyclerView to have such look & feel?
i am developing an travels seat booking application...
i know i can do it with recyclerview with gridlay...
Clyte asked 28/7, 2015 at 5:10
2
To be precise I want to achieve this.
I am using recyclerview with GridLayoutManager. I also have made first item large using the following code
lLayout.setSpanSizeLookup(new GridLayoutManager....
Melvinmelvina asked 26/7, 2015 at 6:39
© 2022 - 2024 — McMap. All rights reserved.