Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用清单中的主题属性隐藏通知栏
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
但是,一旦我使用主屏幕退出应用程序并返回应用程序,通知栏就不会隐藏。如何解决
尝试使用 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); 在活动的 onCreate() 方法中。