使用按钮启动另一个选项卡

时间:2011-06-21 09:29:23

标签: android android-layout android-intent android-tabhost

我用tabhost创建了一个android项目,依此类推。 我可以切换到我想要的视图,一切都没问题。

现在,我想使用按钮启动另一个标签...

这是我的main.class:

public class Main extends TabActivity{

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.v("", "Welcome in Main");
    setContentView(R.layout.tab);

    TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost);  // Le TabHost a des Tabs

    TabSpec firstTabSpec = tabHost.newTabSpec("tid1");  // TabSpec: new tab - TabSpec : setContent to the tab
    firstTabSpec.setIndicator("Informations", getResources().getDrawable(R.drawable.database)).setContent(new Intent(this,FirstTab.class));
    tabHost.addTab(firstTabSpec);

    TabSpec secondTabSpec = tabHost.newTabSpec("tid1");
    secondTabSpec.setIndicator("Graphiques", getResources().getDrawable(R.drawable.chart)).setContent(new Intent(this,SecondTab.class));
    tabHost.addTab(secondTabSpec);

    TabSpec thirdTabSpec = tabHost.newTabSpec("tid1");  // tid1 is firstTabSpec Id (used to access outside)
    thirdTabSpec.setIndicator("Réglages", getResources().getDrawable(R.drawable.settings)).setContent(new Intent(this,ThirdTab.class));
    tabHost.addTab(thirdTabSpec);

我试图:

    public void secondJour(View v) {
    Log.v("", "onCLick 001");
    new Intent(this,SecondTab.class);
}

但它似乎没有运行(没有错误,但屏幕上没有任何新内容......)

你有解决方案吗?

感谢阅读!!!

2 个答案:

答案 0 :(得分:0)

使用startActivity(new Intent(this.Second.class))

答案 1 :(得分:0)

使用startActivity(new Intent(this, SecondTab.class))