Android:单个标签具有多个活动

时间:2012-07-21 20:59:44

标签: android tabbar

我需要单个标签才能进行多项活动

示例:

当我在ShowGrid Activity上单击按钮时,它需要遍历Medicine Activity,并使用标签栏指示相同的标签

ShopGrid&单一标签上的药物

intent = new Intent().setClass(this, ShopGrid.class); 
spec = tabHost.newTabSpec("Store").setIndicator("Store")  
              .setContent(intent);  
tabHost.addTab(spec);  

intent = new Intent().setClass(this, Medicine.class); 
spec = tabHost.newTabSpec("Store").setIndicator("Store")  
              .setContent(intent);  
tabHost.addTab(spec);

0 个答案:

没有答案