中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Android Notification使用方法總結

發布時間:2020-09-23 15:33:58 來源:腳本之家 閱讀:166 作者:心中要有一片海 欄目:移動開發

Android Notification使用方法總結

一. 基本使用

1.構造notification

 NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(appContext)
          .setSmallIcon(appContext.getApplicationInfo().icon)
          .setWhen(System.currentTimeMillis())
          .setAutoCancel(true)//當點擊通知的時候會自動取消
          .setContentTitle(contentTitle)
          .setTicker(notifyText)//狀態欄提示
          .setContentText(summaryBody)
          .setContentIntent(pendingIntent)
          .setNumber(notificationNum);
      Notification notification = mBuilder.build();

2.顯示通知

notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(notifyID, notification);

3.手機震動提醒

/**
   * 手機震動和聲音提示
   */
  public void viberateAndPlayTone(EMMessage message) {
    if(message != null){
      if(EMChatManager.getInstance().isSlientMessage(message)){
        return;
      } 
    }


    if (System.currentTimeMillis() - lastNotifiyTime < 1000) {
      // received new messages within 2 seconds, skip play ringtone
      return;
    }

    try {
      lastNotifiyTime = System.currentTimeMillis();

      // 判斷是否處于靜音模式
      if (audioManager.getRingerMode() == AudioManager.RINGER_MODE_SILENT) {
        EMLog.e(TAG, "in slient mode now");
        return;
      }
      EaseSettingsProvider settingsProvider = EaseUI.getInstance().getSettingsProvider();
      if(settingsProvider.isMsgVibrateAllowed(message)){//檢測是否允許震動
        long[] pattern = new long[] { 0, 180, 80, 120 };
        vibrator.vibrate(pattern, -1);
      }

      if(settingsProvider.isMsgSoundAllowed(message)){//檢測是否允許聲音
        if (ringtone == null) {
          Uri notificationUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);//獲取系統默認通知鈴聲

          ringtone = RingtoneManager.getRingtone(appContext, notificationUri);
          if (ringtone == null) {
            EMLog.d(TAG, "cant find ringtone at:" + notificationUri.getPath());
            return;
          }
        }

        if (!ringtone.isPlaying()) {//防止響鈴疊加
          String vendor = Build.MANUFACTURER;

          ringtone.play();
          // for samsung S3, we meet a bug that the phone will
          // continue ringtone without stop
          // so add below special handler to stop it after 3s if
          // needed
          if (vendor != null && vendor.toLowerCase().contains("samsung")) {
            Thread ctlThread = new Thread() {
              public void run() {
                try {
                  Thread.sleep(3000);
                  if (ringtone.isPlaying()) {
                    ringtone.stop();
                  }
                } catch (Exception e) {
                }
              }
            };
            ctlThread.run();
          }
        }
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

4.取消Notification

void cancelNotificaton() {
    if (notificationManager != null)
    notificationManager.cancel(notifyID);//根據ID取消,每個Notification都有唯一的ID。一般在Activity的基類的onResume調用。這樣可以達到進入程序后,通知自動取消的效果
}

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

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

AI

张家港市| 七台河市| 涞源县| 开阳县| 武陟县| 南昌市| 舒城县| 沧州市| 武汉市| 绥滨县| 肃北| 涪陵区| 武邑县| 万源市| 台南县| 长岭县| 阜平县| 临江市| 石嘴山市| 天长市| 防城港市| 玛多县| 出国| 河北省| 洛川县| 宁陕县| 柳江县| 偃师市| 安吉县| 军事| 百色市| 开鲁县| 渝北区| 凉城县| 西宁市| 黄冈市| 南投县| 长沙县| 和政县| 建湖县| 平江县|