我需要一个标签才能进行多项活动
例子:
当我单击 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);