メインコンテンツへスキップ

Notes - Modern Android Notifications (Android Dev Summit '18)

※Notes記事では、英語のセッション動画やポッドキャストの内容を(雑に)英語でメモに書き残すことを行っています。本記事は、あくまで動画を見ながら、参考程度に読んでいただくことを想定しています。Notes記事には雑メモ程度のものだったり、書き起こしのようなものもあります。これから実際の動画を見る際には、本記事の内容が少しでもお役に立てば幸いです。(内容において不備、誤字脱字等ありましたら気軽にご連絡いただけると嬉しいです!m(__)m)

本記事は、Modern Android Notifications (Android Dev Summit ‘18)の記事です。

f🆔shaunkawano:20181203014407p:plain
  • Respect user’s settings

  • Send well-structured notification

  • Send relevant and timely notification

  • Make use of Auto-cancelling

  • Make use of Timeouts

  • No notifications that are not actionable

Notification Channels
#

  • Used to empower users

  • Help user categorize the notification

  • Help user customize the setting

Tips
#

  • Don’t use only one channel

  • Don’t use wrong/blocked channel

What’s new in Notifications
#

  • API 28: New person class
// create new Person
val sender = Person.Builder().setName(name)
  .setUri(uri)
  .setIcon(icon)
  .build()

// create message with image
val message = Notification.MessagingStyle.Message("Picture", time, sender)
  .setData("image/", imageUri)

val style = Notification.MessagingStyle(sender)
  .addMessage("Check this out!", time, sender)
  .addMessage(message)
  .build()
...

val builder = Notification.Builder(this, CHANNEL_ID)
  .setSmallIcon(R.drawable.notification_icon)
  .setStyle(style) 

Tips
#

  • Do not auto-cancel messaging notification after sending

    • Let user swipe the notification when they finish their conversation

Digital Wellbeing
#

  • Overview of app usage

  • Dashboard for notification received, time spending on apps

  • To manage notifications, reduce interruptions

How are notifications counted?
#

=> If notifications were sent to blocked channel they are not counted, otherwise counted.

Reduce interruptions
#

  • Empower user

Work with Do not Disturb
#

  • Set category

  • Tag people

    • Add person

    • Set the URI associated with the person

Summary
#

Don’t annoy the user. Respect them. Empower them. Delight them.

Connect them to the people they care about.