here i need to disply same tabbar in all activities.my tabbar conatain 4 tabs home,contact,callus,about.inside tabs again i have some buttons.here tabbar working fine.but when i run the app that time tabbar displyed in bottom at the same time inside firsttab(home) wich funs(like buttons what ever) is there that also displyed.but in my when i click the home tab that time only i need to disply home tab functionalities. so i dont know how to remove default veiw of tabbar. can u any one knows suggest me.

link|improve this question

43% accept rate
2  
Just take a look at this – SpK Feb 13 at 6:40
feedback

1 Answer

See this example: Here it it

Edited:

Just replace the code:

    @Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
//preventing default implementation previous to android.os.Build.VERSION_CODES.ECLAIR
return true;
}
return super.onKeyDown(keyCode, event);
}

with the code:

  @Override
  public boolean onKeyDown(int keyCode, KeyEvent event) {
      if (keyCode == KeyEvent.KEYCODE_BACK) {
          //preventing default implementation previous to android.os.Build.VERSION_CODES.ECLAIR
          finish();
          return true;
      }
      return super.onKeyDown(keyCode, event);
  }

After that back Button will work.

Hope it will help you. :)

link|improve this answer
hi ur sended code is wotking but back button is not working – user1089640 Feb 13 at 9:39
in wich activity i extendes ActivityGroup.in that activty back button is not working. – user1089640 Feb 13 at 9:48
see Updated answer. – iDroid Explorer Feb 13 at 9:59
Please follow the instruction explain on that link and it will realy going to help you. – iDroid Explorer Feb 13 at 10:00
previously back button not working.now when i set the finish() back button working. i click back button means application destroyed.but when i click back button,i need to go previous page. – user1089640 Feb 13 at 10:17
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.