成品直播原始碼推薦,Android 禁止下拉選單欄
成品直播原始碼推薦,Android 禁止下拉選單欄
1.遮蔽非鎖屏下的下拉選單欄
這種Android 系統其實是提供了方法的,只不過是隱藏的,只給系統應用,也就是用mk 編譯的apk使用。如果第三方應用想要使用,或者Android stuido 編譯方式的想要使用。則可以使用反射。
/** * Allows an app to control the status bar. */ @SystemService(Context.STATUS_BAR_SERVICE) public class StatusBarManager { /** @hide */ public static final int DISABLE_EXPAND = View.STATUS_BAR_DISABLE_EXPAND; /** @hide */ public static final int DISABLE_NOTIFICATION_ICONS = View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS; /** @hide */ public static final int DISABLE_NOTIFICATION_ALERTS = View.STATUS_BAR_DISABLE_NOTIFICATION_ALERTS; /** @hide */ @Deprecated @UnsupportedAppUsage public static final int DISABLE_NOTIFICATION_TICKER = View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER; /** @hide */ public static final int DISABLE_SYSTEM_INFO = View.STATUS_BAR_DISABLE_SYSTEM_INFO; /** @hide */ public static final int DISABLE_HOME = View.STATUS_BAR_DISABLE_HOME; /** @hide */ public static final int DISABLE_RECENT = View.STATUS_BAR_DISABLE_RECENT; /** @hide */ public static final int DISABLE_BACK = View.STATUS_BAR_DISABLE_BACK; /** @hide */ public static final int DISABLE_CLOCK = View.STATUS_BAR_DISABLE_CLOCK; /** @hide */ public static final int DISABLE_SEARCH = View.STATUS_BAR_DISABLE_SEARCH; /** @hide */ @Deprecated public static final int DISABLE_NAVIGATION = View.STATUS_BAR_DISABLE_HOME | View.STATUS_BAR_DISABLE_RECENT; /** @hide */ public static final int DISABLE_NONE = 0x00000000; /** @hide */ public static final int DISABLE_MASK = DISABLE_EXPAND | DISABLE_NOTIFICATION_ICONS | DISABLE_NOTIFICATION_ALERTS | DISABLE_NOTIFICATION_TICKER | DISABLE_SYSTEM_INFO | DISABLE_RECENT | DISABLE_HOME | DISABLE_BACK | DISABLE_CLOCK | DISABLE_SEARCH; /** * Disable some features in the status bar. Pass the bitwise-or of the DISABLE_* flags. * To re-enable everything, pass {@link #DISABLE_NONE}. * * @hide */ @UnsupportedAppUsage public void disable(int what) { try { final int userId = Binder.getCallingUserHandle().getIdentifier(); final IStatusBarService svc = getService(); if (svc != null) { svc.disableForUser(what, mToken, mContext.getPackageName(), userId); } } catch (RemoteException ex) { throw ex.rethrowFromSystemServer(); } }
2. 遮蔽鎖屏下的下拉選單欄
這種沒有介面,只能在systemui 裡面修改原始碼,來遮蔽掉
以上就是 成品直播原始碼推薦,Android 禁止下拉選單欄,更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2943501/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 成品直播原始碼推薦,uni底部導航欄隱藏單個原始碼
- 成品直播原始碼推薦,uniapp多行滾動通知原始碼APP
- 成品直播原始碼,禁止狀態列受到下滑的影響自動下拉原始碼
- 成品直播原始碼推薦,Flutter波浪進度條WaveProgressBar原始碼Flutter
- 成品直播原始碼推薦,常用的css居中佈局原始碼CSS
- 成品直播原始碼推薦,js點選讓視窗抖動動畫效果原始碼JS動畫
- 成品直播原始碼推薦,java 實現郵件服務原始碼Java
- 成品直播原始碼推薦,登入介面實現插入背景原始碼
- 成品直播原始碼推薦,去掉導航條和tabbar線條原始碼tabBar
- 直播系統平臺原始碼隱藏虛擬導航欄,禁止下拉通知欄,禁止上滑出虛擬導航欄原始碼
- 搭建直播平臺,Android開發之禁止下拉通知欄的方法Android
- 成品直播原始碼推薦,登入和註冊兩個頁面的簡單實現原始碼
- 成品直播原始碼推薦,實現文字載入效果 文字跳動原始碼
- 成品直播原始碼推薦,uniapp 圖片(二維碼)分享到朋友圈原始碼APP
- 成品直播原始碼推薦,原生button按鈕css去掉預設樣式原始碼CSS
- 成品直播原始碼推薦,TableView/CollectionView 滑動頂部效果最佳化原始碼View
- 線上直播原始碼,開發一個下拉選單元件原始碼元件
- 直播平臺原始碼,可摺疊式選單欄原始碼
- 成品直播原始碼,點選滑動切換效果原始碼
- 成品直播原始碼推薦,用JNI生成so檔案,加密解密需要的hascode生成程式碼原始碼加密解密
- 影片直播原始碼,預設展開側邊欄選單原始碼
- 成品直播原始碼,頂部導航欄部分支援左右滑動原始碼
- 直播APP原始碼,直播系統推流SDK(Android)APP原始碼Android
- CSS導航欄及下拉選單CSS
- 直播原始碼網站,點選分類調起選單欄並彈出原始碼網站
- 成品直播原始碼,Android實現監聽Settings值變化的功能原始碼Android
- 直播app原始碼開源,Android 滾動的公告欄APP原始碼Android
- 直播網站原始碼,Android中點選圖片放大的簡單方法網站原始碼Android
- 直播網站原始碼,js動態追加 初始化下拉選項網站原始碼JS
- 成品直播原始碼,例項原始碼系列-更改圖片透明度原始碼
- 成品直播原始碼,Flutter 夜間模式 全域性字型原始碼Flutter模式
- 教育直播APP原生開發,成品原始碼無加密APP原始碼加密
- 直播網站原始碼,寫一個android底部導航欄框架網站原始碼Android框架
- 手機直播原始碼,Android 簡單的彈框原始碼Android
- 直播帶貨原始碼,Android 簡單動畫播放原始碼Android動畫
- 影片直播原始碼,下拉多選el-tag顯示在輸入框中原始碼
- android短視訊開發,自定義下拉選單Android
- vue下拉選單Vue