タブ バー以外のアクティビティでのタブ バーの表示に問題があります。タブ以外のアクティビティでタブバーを設定するには?
コード
TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost);
TabSpec firstTabSpec = tabHost.newTabSpec("tab_id1");
TabSpec secondTabSpec = tabHost.newTabSpec("tab_id2");
TabSpec thirdTabSpec = tabHost.newTabSpec("tab_id3");
firstTabSpec.setIndicator("First").setContent(new Intent(this,FirstTab.class));
secondTabSpec.setIndicator("Second ").setContent(new Intent(this,SecondTab.class));
thirdTabSpec.setIndicator("Third").setContent(new Intent(this,ThirdTab.class));
tabHost.addTab(firstTabSpec);
tabHost.addTab(secondTabSpec);
tabHost.addTab(thirdTabSpec);
これはタブバーのコードです.....私は5つのアクティビティを持っています..firstTab、secondTab、thirdTab、fourthActivity、fifthActivity。しかし、問題は、タブ バーが 3 つのタブ アクティビティでのみ表示され、fourthActivity と thirdActivity では表示されないことです。残りのアクティビティでタブバーを表示するには? 私を助けてください.....
ありがとう...