我有一个 tabhost,我添加了 3 个 Activity (每个标签一个 Activity )。
每次更改选项卡时,我都需要知道如何在 Activity 中调用新实习生。
我为 tabhost 添加了一个监听器。当我使用 clearAllTabs();
方法并在监听器中再次添加所有选项卡时,应用程序崩溃。
当我使用代码从 View 中删除用户单击的特定选项卡时 tabHost.getTabWidget().removeView(tabHost.getTabWidget().getChildTabViewAt(i));tabHost.addTab(the tab I want to replace);
然后新选项卡位于 tabhost 的末尾。
我只需要一个示例,说明每次用户单击特定选项卡时如何重新加载相应的 Activity 。
我的代码:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ActionBar bar = getSupportActionBar();
// requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
Resources res = getResources();
LocalActivityManager mlam = new LocalActivityManager(this, false);
final TabHost tabHost = (TabHost) findViewById(android.R.id.tabhost);
mlam.dispatchCreate(savedInstanceState);
tabHost.setup(mlam);
TabHost.TabSpec spec;
Intent intent;
// TabHost tabHost = getTabHost();
// tabHost.setup();
TabSpec specAll = tabHost.newTabSpec("All");
specAll.setIndicator("All");
Intent allIntent = new Intent(this, allActivity.class);
specAll.setContent(allIntent);
// specAll.setContent(R.id.allList);
Log.d("SpecAll",""+specAll.setContent(allIntent));
TabSpec specIn = tabHost.newTabSpec("in");
specIn.setIndicator("In");
Intent inIntent = new Intent(this, inActivity.class);
specIn.setContent(inIntent);
TabSpec specOut = tabHost.newTabSpec("Out");
specOut.setIndicator("Out");
Intent outIntent = new Intent(this, outActivity.class);
specOut.setContent(outIntent);
// Adding all TabSpec to TabHost
tabHost.addTab(specAll); // Adding all tab
tabHost.addTab(specIn); // Adding in tab
tabHost.addTab(specOut); // Adding out tab
tabHost.setOnTabChangedListener(new OnTabChangeListener() {
@Override
public void onTabChanged(String tabId) {
int i = tabHost.getCurrentTab();
//Log.i("@@@@@@@@ ANN CLICK TAB NUMBER", "------" + i);
if (i == 0) {
Log.d("TAB","" +i);
} else if (i == 1) {
Log.d("TAB","" +i);
}
else
Log.d("TAB", ""+i);
}
});
}
最佳答案
似乎 Activity 和 tabhost 有问题。为了重新加载您只需要执行的 Activity :
specAll.setContent(yourIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
就在 tabHost.addTab 之前
关于android - 重新加载 tabhost 内的 Activity ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11949112/