我使用以下代码将我的操作栏隐藏在我的Android应用程序中
ActionBar actionBar = getSupportActionBar();
actionBar.hide();
我想知道这是否会隐藏Android 4.0及以下Android手机的操作栏。感谢
答案 0 :(得分:1)
是的。来自文件:
The ActionBar APIs were first added in Android 3.0 (API level 11) but they are also available in the Support Library for compatibility with Android 2.1 (API level 7) and above.
您可以阅读更多here
答案 1 :(得分:0)
从here阅读。 是 ,它会为Android 4.0以下的手机隐藏动作栏
getSupportActionBar()与getActionBar()相同,但来自 Android支持库.Android Studio建议您切换 getSupportActionBar()因为,如果你没有,请使用你的应用程序 不会与之前版本的Android向后兼容。
要确保隐藏您的操作栏,最简单的方法是让您的主题从Theme.AppCompat.NoActionBar
(或轻型变体)延伸。