我试图在标签主机我的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中打开新活动时出现问题 谢谢