Top "Android-tabactivity" questions

TabActivity is an Activity class that contains and runs multiple embedded activities or views.

Android: TabActivity deprecated, use Fragments?

It appears that TabActivity is now deprecated, we need to use Fragments. I tried using a standard Activity but couldn't …

android android-layout android-tabhost android-tabactivity
How to impliment navigation drawer and swipe tab in same activity in android studio?

I have done both separately and I want to combine the both activity in single activity. I can't get any …

android android-studio navigation-drawer android-tabactivity
Creating tabs using Fragments now that TabActivity is deprecated

I am creating an application which has five tabs at the bottom of the screen, each of which opens a …

android android-fragments android-tabactivity android-tabs
Badge on Android TabHost

I want to implement the functionality same as was there in iPhone I implemented the custom Tabhost same as in …

android android-tabhost android-custom-view android-tabactivity
How to call tab Onclick and OnTabChange for same tab

In my project, I have two tabs and a button. For two tabs,I have two activities and button calling …

android android-tabhost android-tabactivity
Android SDK Fragment Support

Ok i'm just starting to get into Android programming now, and I'm following the android "TabActivity" tutorial: http://developer.android.…

android eclipse android-fragments android-tabactivity
Feature Custom Title: Cannot combine custom titles on API 11 and above

I have a project in which i setted: minSdkversion setted to 10 MainActivity is a TabActivity Code in onCreate method is …

android tabactivity titlebar android-tabactivity custom-titlebar
Why getActionBar() getting null value in TabHost from Android?

I am trying to write a code in Android , to hide the Actionbar during scroll down event. I have a …

android nullpointerexception android-actionbar android-tabactivity
How to use the OnTabChanged method in android?

TabHost tabHost = getTabHost(); // The activity TabHost TabHost.TabSpec spec; // Resusable TabSpec for each tab Intent intent; // Reusable Intent for each …

android android-tabhost android-tabactivity
Restarting an activity in a single tab in a TabActivity?

I have a TabActivity. Each tab point to a sub activity. This works great. Is there any clever way to …

android android-tabactivity