Notifications Tutorial Part 3 – BIG TEXT STYLE + INBOX STYLE – Android Studio Tutorial
In the next parts of the notification tutorial, we will learn how to apply different pre-defined styles to our notifications with the NotificationCompat.Builder’s setStyle method.
We will start by adding the BigTextStyle, with which we can display a larger amount of text in the expanded state of the notification. For this we have to call bigText on this BigTextStyle object and provide a CharSequence.
Furthermore we can call setBigContentTitle and setSummaryText to provide an alternative title for the expanded state, and a small summary text.
Next we will take a look at the InboxStyle, which is pretty similar to BigTextStyle, but instead of defining one big text, we can display up to 7 separate lines by calling addLine and supplying a string for each one.
Also we will learn how to add a large icon (for example a user image) to our notificaiton with the setLargeIcon method, where we have to pass a Bitmap.
Watch the whole playlist:
Example code for this part:
https://gist.github.com/codinginflow/ea1bac575ed094d95153dbdfe14712d3
____________________
💻 Find the BEST programming tutorials on TutHub:
https://tuthub.io
⭐ Get my MVVM Caching Course now:
https://codinginflow.com/caching
❗ Subscribe to the channel:
https://www.youtube.com/c/codinginflo…
📨 Subscribe to the Coding in Flow newsletter:
https://codinginflow.com/newsletter
❓ Join our free developer community:
https://discord.gg/TSnMvmc
📣 Follow Coding in Flow on other sites:
Facebook: https://www.facebook.com/codinginflow
Instagram: https://www.instagram.com/codinginflow
TikTok: https://www.tiktok.com/@codinginflow
Twitter: https://twitter.com/codinginflow
Github: https://github.com/codinginflow
💰 Business requests, sponsoring, etc.: info@codinginflow.com
Views :36225
android studio