James Harpe
James Harpe

Reputation: 4345

Grid of Views with unequal size

I have an Android app with an image detail screen. Images have tags, and these need to be displayed at the bottom of the screen. When the horizontal space for tags is exhausted, they wrap to the next line up. Each tag should only occupy the minimum necessary horizontal space. Here is an image of the effect I need, from an iOS app:

enter image description here

How can I achieve this effect in Android?

Upvotes: 0

Views: 87

Answers (1)

Lamorak
Lamorak

Reputation: 11137

You will need to implement such FlowLayout yourself or use some library. Have a look at this question.

Upvotes: 1

Related Questions