Back button behavior with tabs and ActivityGroup

后端 未结 2 915
南旧
南旧 2021-01-28 23:29

I have an Activity (Main) which shows tabs like this:

private void initTabs(){
    mTabHost = getTabHost(); // The activity TabHost

    Intent inte         


        
2条回答
  •  佛祖请我去吃肉
    2021-01-29 00:04

    Override public void onBackPressed() in your activity and handle the back button click yourself. Calling super.onBackPressed(); will affect the standard behaviour of back button press (also exit your app)

提交回复
热议问题