0
私はタブビューを持ち、タブビューには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);
。リストビュータブの下に表示されます。
どうすればいいですか?