Pranay Airan
Pranay Airan

Reputation: 1875

What is this called and how can i create something similar in android?

I was seeing some application and saw this application i was wondering how they created this horizontal navigation menu for their android application.

alt text

So what is this horizontal navigation called in android?? and can any one point me to any resource which has some sample example for creating 1 for android?

Thanks

Upvotes: 0

Views: 1388

Answers (3)

poke
poke

Reputation: 387677

At the top is an accordion layout. See this related question: Android - accordion widget.

The control bar at the bottom is just 4 styled buttons next to each other.

Upvotes: 1

Brian
Brian

Reputation: 1337

That is a ListView in Android.

Please see the tutorial provided on Android's site.

Upvotes: 0

Tyler Treat
Tyler Treat

Reputation: 14998

I think you'd want a ListView.

http://developer.android.com/guide/tutorials/views/hello-listview.html

Upvotes: 0

Related Questions