0
安裝後,我的應用程序只顯示1個選項卡,因此我想隱藏選項卡行。隱藏/顯示操作欄選項卡
當用戶登錄/註冊時,會顯示其他選項卡。
我在onCreate()中創建標籤(片段)。
@Override
public void onResume() {
super.onResume();
this.supportInvalidateOptionsMenu();
if(logged_in()){
m_actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
m_actionBar.setSelectedNavigationItem(this.m_previousTabIndex);
}
else
m_actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
return;
}
我沒有看到標籤..這很好。
但我沒有看到第一個標籤的內容。屏幕上除了actionBar之外我什麼也沒看到。
如何解決這個問題以顯示第一個標籤的內容?