我需要一个具有父子概念的不同选项卡组活动

时间:2013-03-02 06:55:19

标签: android tabs

我想使用标签组活动,我不想使用此代码

    this.tabHost = getTabHost();

    TabHost.TabSpec spec;  // Resusable TabSpec for each tab
    Intent intent;  // Reusable Intent for each tab

    // Create an Intent to launch the first Activity for the tab (to be reused)
    intent = new Intent().setClass(this, LoginTab.class);

    // Initialize a TabSpec for the first tab and add it to the TabHost
    spec = tabHost.newTabSpec("Login").setIndicator("Login",
            getResources().getDrawable(R.drawable.login)).setContent(intent);
    tabHost.addTab(spec);

我实际上想在这里使用父子概念,所以请帮助我....

0 个答案:

没有答案