TabHost setContent错误:(

时间:2014-07-27 22:56:31

标签: android android-intent android-activity

我试图在标签主机我的Android应用程序

中打开第二个activity.class

这是代码示例..

TabHost th =(TabHost)findViewById(R.id.tabhost);
th.setup();
TabSpec ts = th.newTabSpec("Tab1");
ts.setContent(new Intent(this,SecActivity.class)) ;
ts.setIndicator("Tab Play");
th.addTab(ts);

当我点击tab1我的应用程序崩溃时:(

请告诉我这是在tabhost中打开活动的正确方法吗?

这种方法运行正常。

   ts.setContent(R.id.btn2)) ;

仅当我尝试在tabhost中打开新活动时出现问题 谢谢

0 个答案:

没有答案