Book Image

Android 6 Essentials

By : Yossi Elkrief
Book Image

Android 6 Essentials

By: Yossi Elkrief

Overview of this book

Android 6 is the latest and greatest version of the Android operating system, and comes packed with cutting edge new features for you to harness for the benefit of building better applications. This step-by-step guide will take you through the basics of the Android Marshmallow permissions model and beyond into other crucial areas such as the Audio,Video,Camera API and Android’s at work features. Learn how to create, deploy, and manage Android applications with Marshmallow’s API and the latest functionalities. The combination of instructions and real-world examples will make your application deployment and testing a breeze.
Table of Contents (16 chapters)
Android 6 Essentials
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
Index

Notifications


There are a few changes to the notifications feature, as follows:

  • The Notification.setLatestEventInfo() method is now removed. When constructing notifications, we must use the Notification.Builder class.

  • Updating a notification is also done via the Notification.Builder instance using the same instance of the builder, and calling the build() method will get us an updated Notification instance. If legacy support is required, you can use NotificationCompat.Builder instead, which is available in the Android Support Library.

  • The adb shell dumpsys notification command no longer prints out notification text. The proper usage now is adb shell dumpsys notification --noredact.

  • The newly added INTERRUPTION_FILTER_ALARMS filter level corresponds to a new mode: Alarms only do not disturb.

  • The newly added CATEGORY_REMINDER category is used for user-scheduled reminders.

  • The newly added Icon class allows icons to be attached to notifications via the setSmallIcon() and setLargeIcon() methods.

  • The...