user1946865
user1946865

Reputation: 21

Flipboard android layout choice

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.sstatic.net/hNvxt.jpg

Upvotes: 0

Views: 895

Answers (3)

Ramesh Akula
Ramesh Akula

Reputation: 5740

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

Upvotes: 0

Basbous
Basbous

Reputation: 3925

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

Upvotes: 0

Apoorv
Apoorv

Reputation: 13520

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

Upvotes: 1

Related Questions