1. 程式人生 > >Android7.0 通知直接回復

Android7.0 通知直接回復

簡介

最近在看7.0的一些新特性,記錄下小知識方便之後使用。今天要說的就是狀態列通知可直接回復的功能。(一定記得是7.0的新特性,在低版本上是不支援的)先來看效果圖。

notifition.gif

步驟

  1. 建立一個RemoteInput
  2. 建立一個PendingIntent, 這個PendingIntent指當我們點選”傳送”的時候呼叫什麼
  3. 建立一個直接回復的Action
  4. 建立notification
  5. 傳送通知
  6. 拿到回覆的內容
  7. 處理

實現

  1. 建立一個RemoteInput
RemoteInput remoteInput = new RemoteInput.Builder(RESULT_KEY).setLabel("回覆通知").build();
其中RESULT_KEY是獲取回覆的內容,setLabel設定的值就是EditText的hint值
  1. 建立一個PendingIntent。(這個就不過多介紹了)
Intent intent = new Intent(this, SendService.class);
PendingIntent pendingIntent = PendingIntent.getService(this,1,intent,PendingIntent.FLAG_CANCEL_CURRENT);
  1. 建立可回覆的Action
NotificationCompat.Action action = 
new NotificationCompat.Action.Builder(R.mipmap.ic_launcher,"回覆",pendingIntent).addRemoteInput(remoteInput).build();
其中這個Builder需要傳遞四個引數,第一個就是logo圖片,第二個類似於標籤我們要點選的。第三個就是要做的動作intent.最後把我們建立的remoteInput加入進來。
  1. 建立notification
 NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("請問需要銀行貸款嗎?")
                .setContentText("您好,我是XX銀行的XX經理, 請問你需要辦理銀行貸款嗎?")
                .setColor(Color.CYAN)
                .setPriority(Notification.PRIORITY_MAX) // 設定優先順序為Max,則為懸浮通知
                .addAction(action) // 設定回覆action
                .setAutoCancel(true)
                .setWhen(System.currentTimeMillis())
                .setDefaults(Notification.DEFAULT_ALL) // 想要懸浮出來, 這裡必須要設定
                .setCategory(Notification.CATEGORY_MESSAGE);
  1. 傳送通知
 NotificationManager nm = getSystemService(NotificationManager.class);
 Notification notification = buildNotification();
 nm.notify(NOTIFICATION_ID,notification);
  1. 拿到回覆的內容
   Bundle resultsFromIntent = RemoteInput.getResultsFromIntent(intent);
    //根據key拿回復的內容
    if (null!=resultsFromIntent){
        String resultString = resultsFromIntent.getString(MainActivity.RESULT_KEY);
        //處理回覆內容
        reply(resultString);
    }
  1. 處理
 private void reply(final String resultString) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                SystemClock.sleep(1000);
                Logger.e(SendService.class.getSimpleName(),resultString);
                onReply();
            }
        }).start();
    }

    @TargetApi(Build.VERSION_CODES.M)
    private void onReply() {
        final NotificationManager nm = getSystemService(NotificationManager.class);
        final Handler handler = new Handler(getMainLooper());
        handler.post(new Runnable() {
            @Override
            public void run() {
                // 更新通知為“回覆成功”
                Notification notification = new NotificationCompat.Builder(SendService.this)
                        .setSmallIcon(R.mipmap.ic_launcher)
                        .setContentText("回覆成功")
                        .build();
                nm.notify(MainActivity.NOTIFICATION_ID, notification);
            }
        });

        // 最後將通知取消
        handler.postDelayed(new Runnable() {
            @Override
            public void run() {
                nm.cancel(MainActivity.NOTIFICATION_ID);
            }
        }, 2000);
    }

以上基本就是整個通知回覆的內容了。程式碼很簡單,就是基本的呼叫。