3

I am trying to show dynamic list of strings in GridView. Every word will be clickable and can be selected or deselected. I am attaching a screenshot of Flipboard as I want exactly the same functionality.

enter image description here

Please help me to find out the same functionality to be implemeted in my app.

user1288005
  • 890
  • 2
  • 16
  • 36

2 Answers2

0

The simplest way and without any external libraries you can use native components Gridview or recyclerview with GridLayoutManager

Follow this steps :

1 - Design your row item it's means the click-able labels in separated xml file.

2 - Create your adapter class to inflate view, show the data and handle clicks.

3- attach adapter to gridview or recyclerview.

And her is example for RecyclerView with GridLayoutManager and other one for Gridview

Mohamed Moamen
  • 286
  • 1
  • 3
  • 13
0

You can use this or this libraries to do this type of functionality

Divyata Chauhan
  • 279
  • 4
  • 21