為通知添加更多頁面(Adding Pages to a Notification)

為通知添加更多頁面(Adding Pages to a Notification)

當你想提供更多的信息,而這些信息不需要用戶打開手機去查看,此時你可以添加一個或者多個頁面在wear的通知中.更多的頁面內容會立即呈現(xiàn)在主通知卡片的右側.

這里寫圖片描述
這里寫圖片描述
通過以下步驟創(chuàng)建擁有多個頁面的通知:1. 首先使用NotificationCompat.Builder創(chuàng)建一個主通知,這里創(chuàng)建的通知和展示在手機上的通知創(chuàng)建方式一樣.2. 使用NotificationCompat.Builder為通知創(chuàng)建更多的頁面.3. 使用方法addPage()或者addPages()講創(chuàng)建的頁面添加到主通知中.舉個栗子,下面是添加第二個頁面到通知中的代碼.


// Create builder for the main notification
NotificationCompat.Builder notificationBuilder =
        new NotificationCompat.Builder(this)
        .setSmallIcon(R.drawable.new_message)
        .setContentTitle("Page 1")
        .setContentText("Short message")
        .setContentIntent(viewPendingIntent);

// Create a big text style for the second page
BigTextStyle secondPageStyle = new NotificationCompat.BigTextStyle();
secondPageStyle.setBigContentTitle("Page 2")
               .bigText("A lot of text...");

// Create second page notification
Notification secondPageNotification =
        new NotificationCompat.Builder(this)
        .setStyle(secondPageStyle)
        .build();

// Extend the notification builder with the second page
Notification notification = notificationBuilder
        .extend(new NotificationCompat.WearableExtender()
                .addPage(secondPageNotification))
        .build();

// Issue the notification
notificationManager =
        NotificationManagerCompat.from(this);
notificationManager.notify(notificationId, notification);

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
【社區(qū)內容提示】社區(qū)部分內容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發(fā)布,文章內容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內容

  • Spring Cloud為開發(fā)人員提供了快速構建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務發(fā)現(xiàn),斷路器,智...
    卡卡羅2017閱讀 136,688評論 19 139
  • 原文出處: http://www.androidchina.net/6174.html Notification在...
    木木00閱讀 12,547評論 3 32
  • 為android wear創(chuàng)建通知 用NotificationCompat.Builder創(chuàng)建一個可以在手機上發(fā)送...
    lucky9322閱讀 1,177評論 0 1
  • 一、什么是Notification? Notification是一種有全局效果的通知,可以顯示在系統(tǒng)通知欄。以下內...
    douhao1333閱讀 778評論 0 1
  • 公園里,很多人每天都在這白天里賞景、散步似乎寒冬從未來過,而不起眼的她幾乎每天都留下腳印在這公園里。結束了忙碌的一...
    R妙閱讀 355評論 0 0

友情鏈接更多精彩內容