0

I was wondering if anybody had any idea about how to mimic this Flipboard ui in android. I'm thinking that they might be using fragments, using gridview and list view, but the implementation of the gridview makes me wonder. Gridview with rows with three columns and a row with one column confuses me. Any suggestions would be appreciated.

View the Flipboard UI: https://i.stack.imgur.com/hNvxt.jpg

3 Answers3

1

Maybe this library is what you are looking for https://github.com/openaphid/android-flip

Apoorv
  • 13,470
  • 4
  • 27
  • 33
  • Nope, I'm not looking for a way to accomplish the flipview, but a way of creating this complex layout (gridview and listview) – user1946865 Nov 13 '13 at 21:19
0

What you need is StaggeredGridView. Maybe this link helps you.

Basbous
  • 3,927
  • 4
  • 34
  • 62
  • I'm not sure if the StaggeredGridView would work judging from the documentation I read about it. I'll try and come back to you, thanks. If you can implement it and have time to do it, I'll be grateful. – user1946865 Nov 13 '13 at 21:32
0

This approach can help to implement such layouts.

  1. Create a gridview or create grid columns
  2. Add this view as Header view for Listview
Ramesh Akula
  • 5,720
  • 4
  • 43
  • 67