Reputation: 2530
Here is the link of creating a list in Google Keep app. I need this list creation control in Android.
I am searching for control of creating item listing like Google Keep Android.
Is there any third party library? If not, then give me an idea to create control like that.
Upvotes: -2
Views: 1458
Reputation: 5741
Irshu mention in comment to use StaggeredGridLayoutManager.A LayoutManager that lays out children in a staggered grid formation. It supports horizontal & vertical layout as well as an ability to layout children in reverse.
Staggered grids are likely to have gaps at the edges of the layout. To avoid these gaps, StaggeredGridLayoutManager can offset spans independently or move items between spans.
For more details visit: http://developer.android.com/reference/android/support/v7/widget/StaggeredGridLayoutManager.html
Tutorials : http://inducesmile.com/android/android-staggeredgridlayoutmanager-example-tutorial/
Upvotes: 1