亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么從android中跳轉到應用通知設置界面

發布時間:2021-03-01 15:58:19 來源:億速云 閱讀:445 作者:戴恩恩 欄目:移動開發

這篇文章主要介紹了怎么從android中跳轉到應用通知設置界面,此處通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考價值,需要的朋友可以參考下:

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。

 if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
          Intent intent = new Intent();
          intent.setAction("android.settings.APP_NOTIFICATION_SETTINGS");
          intent.putExtra("app_package", getActivity().getPackageName());
          intent.putExtra("app_uid", getActivity().getApplicationInfo().uid);
          startActivity(intent);
        } else if (android.os.Build.VERSION.SDK_INT == Build.VERSION_CODES.KITKAT) {
          Intent intent = new Intent();
          intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
          intent.addCategory(Intent.CATEGORY_DEFAULT);
          intent.setData(Uri.parse("package:" + getActivity().getPackageName()));
          startActivity(intent);
        }

跳轉到應用詳情頁面的代碼如下:

 Intent localIntent = new Intent();
        localIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        if (Build.VERSION.SDK_INT >= 9) {
          localIntent.setAction("android.settings.APPLICATION_DETAILS_SETTINGS");
          localIntent.setData(Uri.fromParts("package", getActivity().getPackageName(), null));
        } else if (Build.VERSION.SDK_INT <= 8) {
          localIntent.setAction(Intent.ACTION_VIEW);
          localIntent.setClassName("com.android.settings", "com.android.settings.InstalledAppDetails");
          localIntent.putExtra("com.android.settings.ApplicationPkgName", getActivity().getPackageName());
        }
        startActivity(localIntent);

對于檢測app是否開啟通知,同樣是針對4.4以上的系統才有效:

NotificationManagerCompat manager = NotificationManagerCompat.from(App.getInstance().getContext());
boolean isOpened = manager.areNotificationsEnabled();

4.4以下調用該方法并不會出錯,只是全部返回true,默認開啟狀態

到此這篇關于怎么從android中跳轉到應用通知設置界面的文章就介紹到這了,更多相關怎么從android中跳轉到應用通知設置界面的內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

获嘉县| 和林格尔县| 云龙县| 南昌县| 明光市| 宣化县| 留坝县| 开封市| 大方县| 海门市| 太白县| 曲周县| 繁昌县| 万安县| 炎陵县| 三原县| 咸阳市| 日喀则市| 延吉市| 旬阳县| 东城区| 西丰县| 安庆市| 通州市| 肇源县| 枣强县| 崇文区| 陕西省| 铁岭县| 格尔木市| 博白县| 闽侯县| 特克斯县| 龙州县| 尉犁县| 永安市| 仲巴县| 专栏| 奉新县| 乐至县| 科技|