2014-04-15 144 views
2

我想在Android中隱藏底部選項欄。我不知道我們是否稱它爲Option Bar或不。

請查看下圖:告訴我,如果我們稱之爲別的東西。它在底部。

現在,我想隱藏它。怎麼做 ? Hide Option Bar在Android中隱藏底部選項欄

+0

你在談論導航欄嗎? –

+0

@SimplePlan,Sry,正如我在帖子中清楚說明的那樣,我知道它的確切名稱 –

+0

轉到官方[docs](https://developer.android.com/training/system-ui/navigation.html)以獲得更好的效果瞭解導航欄 –

回答

1

這就是所謂的導航欄,因爲它僅具有選項按鈕可能是因爲您的設備有家庭硬件按鈕和背部,這就是爲什麼它看起來像一個選項按鈕只的原因吧。

Refer to the docs隱藏它,雖然它只適用於支持它的版本。 For 4.0+

View decorView = getWindow().getDecorView(); 
// Hide both the navigation bar and the status bar. 
// SYSTEM_UI_FLAG_FULLSCREEN is only available on Android 4.1 and higher, but as 
// a general rule, you should design your app to hide the status bar whenever you 
// hide the navigation bar. 
int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION 
       | View.SYSTEM_UI_FLAG_FULLSCREEN; 
decorView.setSystemUiVisibility(uiOptions); 
+0

不能用於較低版本??? –