我正在构建一个具有选项卡视图的应用程序,并且我的选项卡视图有两个选项卡。1. 地图视图 2. 列表视图
TabSpec mapTabSpec = tabHost.newTabSpec("tid1");
TabSpec listTabSpec = tabHost.newTabSpec("tid1");
mapTabSpec.setIndicator("ListView", getResources().getDrawable(R.drawable.logo))
.setContent(new Intent(this,ListViewEvents.class));
listTabSpec.setIndicator("Map View", getResources().getDrawable(R.drawable.logo))
.setContent(new Intent(this,MapViewEvents.class));
tabHost.addTab(mapTabSpec);
tabHost.addTab(listTabSpec);
在列表视图中单击一个列表项,我想加载另一个必须显示在同一选项卡下的活动(页面),即。在列表视图选项卡下。
我如何做到这一点?