当它从服务中隐藏时,有没有办法显示android状态栏?显示我的意思是屏幕顶部的栏,而不是扩大通知区域。
播放商店中的智能状态栏以某种方式在没有 root 的情况下执行此操作。
另外,我也尝试过扩展状态栏通知,代码如下:
Object service = mContext.getSystemService("statusbar");
Class<?> statusbarManager = Class.forName("android.app.StatusBarManager");
Method expand = statusbarManager.getMethod("expand");
expand.invoke(service);
具有所需的权限。但似乎什么也没发生。
任何帮助,将不胜感激!