1

enter image description here

I want to implement list in Android like this screenshot. Me checked gridview , listview, custom views, but sadly i donot find any useful tutorials to support gridview with each row cell/column count changes on data size.

Jithish P N
  • 1,970
  • 3
  • 26
  • 39
  • Possible duplicate of http://stackoverflow.com/questions/29130795/how-to-create-a-gridview-like-foursquare-interest-selection-screen – Sachin Rao Dec 30 '15 at 09:24

3 Answers3

1

You can try this library according to your need. Alternatively you can edit the source code for you requirements.

It is simple android TagView library.

silentsudo
  • 6,730
  • 6
  • 39
  • 81
1

You can try with FlowLayout, see bellow libraries:

hongyangAndroid/FlowLayout

blazsolar/FlowLayout

suanmiao/flowlayout

android-flowlayout

Cutta/TagView

Md Imran Choudhury
  • 9,343
  • 4
  • 62
  • 60
0

Use recycler view for list i.e. Your rows and populate each row with your data. Just that now you have to also dynamically add views in each row based upon your conditions

Rusheel Jain
  • 843
  • 6
  • 20