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.
我正在以全屏沉浸式模式运行应用程序。
在三星手机上,设备上有一个菜单按钮,单击该按钮会强制打开顶部的状态栏。这会使我的整个视图向下滑动并且不会消失。
如何防止菜单点击事件显示状态栏?
找到它,把它放在活动中。
@Override public boolean onPrepareOptionsMenu (Menu menu) { return false; }
s