How to create tabbed layout in Android 4.0?
Asked Answered
B

1

7

Now that TabActivity is deprecated, what is the proper way to build a tabbed interface using fragments? Every tutorial I have seen takes a different approach. Some of them are supremely complicated pushing a mundane programming topic to the rocket science territory. What gives?

I am coding for ICS Android 4.0.

Thanks.

Battlefield answered 8/11, 2011 at 16:38 Comment(1)
If you want tabwidget with fragment this tutorial might help you learnncode.wordpress.com/2013/12/18/…Endoblast
C
2

The preferred way now is to use the tabs that ActionBar gives you. It's quite easy to set up, given that you like this option. With ActionbarSherlock, you can even port your app all the way back to 1.6.

It's not suitable for every case however. For example, you might need those tabs to be inside a fragment, on a screen that displays multiple fragments at once. In that case, you have to stick with the "deprecated" methods to set up the tabs, using a TabWidget. It's ugly, but possible.

Edit:

Check Jeff's comment. As he pointed out, I was wrong, TabWidget is still perfectly valid, TabAvtivity is the deprecated class here!

Cytotaxonomy answered 8/11, 2011 at 16:51 Comment(2)
Thanks. I got tabs working with ActionBar. This document was very useful: abelski.com/courses/android3ui/actionbar.pdfBattlefield
TabWidget is not deprecated, TabActivity is. The action bar is not necessarily preferred, it depends upon the use, as answered by Adam Powell Android platform navigation expert.Haga

© 2022 - 2024 — McMap. All rights reserved.