Skip to content Skip to sidebar Skip to footer

Android Tabwidget Need Help

hello i am creating an application i've created tabbar from pressing the first tab i am downloading a file and into second tab it lists all the downloaded files..i am downloading

Solution 1:

If you want to switch to another tab from within a Tab, you can use this,

In your MainActivity which extends a tabActivity, specify a method like this,

publicvoidswitchTabSpecial(int tab){
    tabHost.setCurrentTab(tab);
  }

Inside the onClick listener of your download button,

 mainAcitivity t=(mainActivity)this.getParent();
       t.switchTabSpecial(1);

Now this will traverse you from your first tab to second tab.

Post a Comment for "Android Tabwidget Need Help"