Notifications

If the content you are planning to present to the end user is short, then, instead of dialogs, you should try notifications. We can customize notifications in many different ways. Here, we will present some basic customizations. Creating and displaying notifications is easy. It requires more knowledge of Android than we have learned so far. Don't worry; we will do our best to explain it. You will face many of these classes in the later chapters.

We will demonstrate how to use notifications as follows:

  1. Define a notificationBuilder and pass a small icon, content title, and content text as follows:
 val notificationBuilder = NotificationCompat.Builder(context) .setSmallIcon(R.drawable.icon) .setContentTitle("Hello!") .setContentText("We ...

Get Mastering Android Development with Kotlin now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.