Reputation: 3021
Does anybody know what is the name of upper part of this image(Buddies,activity,chat,history) which is like tab and also how to implement it in android tablet?
Upvotes: 0
Views: 128
Reputation: 31779
This is tabs. Before honeycombs tabs were done using the TabActivity + Activity group. But now the activity group class is deprecated and fragments should be used instead.
Upvotes: 0
Reputation: 6663
That is the TabHost: http://developer.android.com/reference/android/widget/TabHost.html
Here's a good example of how to use it: http://developer.android.com/resources/tutorials/views/hello-tabwidget.html
Upvotes: 1