-2

Here is the link of creating a list in Google Keep app. I need this list creation control in Android.

enter image description here

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.

halfer
  • 19,824
  • 17
  • 99
  • 186
Danial Hussain
  • 2,488
  • 18
  • 38

1 Answers1

1

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/

USKMobility
  • 5,721
  • 2
  • 27
  • 34