タブビューを備えたアプリを作成していますが、タブビューには2つのタブがあります。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);
リストビューで、リストアイテムをクリックして、同じタブの下に表示する必要がある別のアクティビティ(ページ)をロードします。リストビュータブの下。
どうすればこれを達成できますか?