I'm trying to implement tabs in Android.
Looking through some online tutorials, it looks like it's implemented by using TabActivity. But TabActivity is deprecated.
The Android developer reference recommends using Fragments for versions above HONEYCOMB, but this is apparently not supported on older versions (about 60% of phones today).
So, what is the best approach for implementing tabs that's supported on all versions? Would it be easier to just manually build the tabs into the layout?