How to avoid starting the activity at the first tab in a TabActivity?

二次信任 提交于 2020-01-05 19:59:31

问题


i want to avoid starting activity in the first tab .. tabHost.setCurrentTab(1). When the tab activity starts, I expect that only the activity in tab 2 gets started. But, currently, Android starts both activity in tab 1 and activity in tab 2, if I set tab 2 as default current tab

import android.app.TabActivity;
import android.content.Intent;
import android.content.res.Resources;
import android.os.Bundle;
import android.util.Log;
import android.view.Window;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;

@SuppressWarnings("deprecation")

public class sample1 extends TabActivity {
    String postContent;

    public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

        requestWindowFeature(Window.FEATURE_NO_TITLE);  

        setContentView(R.layout.main2);
        Bundle bundle = this.getIntent().getExtras();
        postContent = bundle.getString("url");
             Log.d("securl1",postContent);
        Resources ressources = getResources(); 
        TabHost tabHost = getTabHost(); 

        // Android tab


        // Apple tab
        Intent intentApple = new Intent().setClass(this, AppleActivity.class);
        intentApple.putExtra("url", postContent);
        TabSpec tabSpecApple = tabHost
            .newTabSpec("Apple")
            .setIndicator("Web")
            .setContent(intentApple);

        // Windows tab
        Intent intentWindows = new Intent().setClass(this, WindowsActivity.class);
        TabSpec tabSpecWindows = tabHost
            .newTabSpec("Windows")
            .setIndicator("Smart")
            .setContent(intentWindows);

        // Blackberry tab
        Intent intentBerry = new Intent().setClass(this, BlackBerryActivity.class);
        intentBerry .setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        TabSpec tabSpecBerry = tabHost
            .newTabSpec("Berry")
            .setIndicator("", ressources.getDrawable(R.drawable.ic_menu_share_holo_dark))
            .setContent(intentBerry);


        Intent intentAndroid = new Intent().setClass(this, AndroidActivity.class);
        intentAndroid .setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        TabSpec tabSpecAndroid = tabHost
            .newTabSpec("Android")
            .setIndicator("", ressources.getDrawable(R.drawable.ic_menu_back))

            .setContent(intentAndroid);


        Intent intentBerry1 = new Intent().setClass(this, BlackBerryActivity1.class);
        TabSpec tabSpecBerry1 = tabHost
            .newTabSpec("Berry")
            .setIndicator("berry")
            .setContent(intentBerry1);

        // add all tabs 
        tabHost.addTab(tabSpecAndroid);
        tabHost.addTab(tabSpecApple);
        tabHost.addTab(tabSpecWindows);
        tabHost.addTab(tabSpecBerry);

        //set Windows tab as default (zero based)
        tabHost.setCurrentTab(1);
    }

}

回答1:


Try this.

 mTabHost.getTabWidget().getChildAt(0).setEnabled(false);

hope it will work for you. :)



来源:https://stackoverflow.com/questions/27289697/how-to-avoid-starting-the-activity-at-the-first-tab-in-a-tabactivity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!