Google I/O: What’s New in Android

The third session of Google I/O ’19, What’s New in Android, was really exciting! Google presented a long list of new Android features. There were also many exciting reveals and plans for the Android framework. With Android Q in beta 3, Chet Haase, Dan Sandler, and Romain Guy, had plenty to show the crowd. While […] By Victoria Gonda.

Leave a rating/review
Save for later
Share

The third session of Google I/O ’19, What’s New in Android, was really exciting! Google presented a long list of new Android features. There were also many exciting reveals and plans for the Android framework.

With Android Q in beta 3, Chet Haase, Dan Sandler, and Romain Guy, had plenty to show the crowd. While there was no big announcement comparable to the Kotlin announcement two years ago, there was still plenty of excitement.

It’s clear Google is listening to end users and developers when making decisions for the future. It’s looking at patterns developers are using and improving them for everyone.

In their own words, they are:

  • Noticing a UI paradigm in the wild.
  • Making it safer and more reusable.
  • Adding it to the framework.

That’s the core of what the Android team has been doing for a while now. The team has made some cool changes in the process. Things are about to become much easier for us all because of the attention it’s paid to developers.

Let’s dig into some of the things the speakers discussed.

Android Q

Android Q is around the corner and you’ve got to see the improvements that are coming with it.

Notifications

One improvement makes notifications better for end users. You can make notifications either gentle or interruptive by using swipe gestures. This will make multi-tasking easier and show the right notifications at the right time.

Gentle notifications appear at the bottom of the screen and don’t pop up to get your attention. Interruptive notifications display on top of other notifications to grab your attention. This is a great way to distinguish your most important alerts from those that are less important.

Priority and Gentle Notifications

To promote digital wellbeing, Google is also introducing the idea of gentle versus priority notifications. After all, if everything is a priority, nothing is.

Priority notifications cause a pop-up and are for your most important notifications. Good examples of priority notifications include communications from a person, events or alarms.

You can request priority notifications for your app. However, end users ultimately choose how they want to categorize your notification.

Notification Actions

Users can get things done more efficiently by using notification actions. Knowing this, Google is introducing automatically generated actions for notifications. This includes replying using text.

Google has automatically enabled this for MessagingStyle notifications. You also have the ability to opt-in for other types of notifications.

Bubbles

Google saw people building Bubbles and decided to create a safer API for everyone. Bubbles tie into the notification system and float on top of other app content for maximum multitasking. They’re an alternative option to using SYSTEM_ALERT_WINDOW, which will eventually be fully deprecated. You can start using them in Android Q!

Bubbles

screenshot of bubbles feature

System UI

There are two new options for viewing and interacting with your devices. These are both optional to the user.

Dark Theming

Dark Theming is available for end users on Android Q. It’s no longer time based, so the user can turn it on at will.

Google recommends you prepare your app for dark UI by using themes, but they provide other ways as well. You don’t want to be the only app without a dark theme!

Gesture Navigation

Gesture Navigation lets you replace the three navigation buttons at the bottom of your screen with gestures. Fewer buttons mean more screen space for your content. Start paying attention to the gesture areas at the sides and bottom of the screen when considering draggable content, as Google advises.

Interacting With the Framework

The APIs you work with every day got some changes to make things easier and safer for everyone.

Sharing

There’s a new and improved share sheet and sharing API! The share sheet has a content preview that supports images and text. The copy to clipboard option is now at the top so you don’t have to look for it.

Also, another great addition is that the new sharing API doesn’t need to start your app.

Audio Playback Capture

Audio Playback Capture lets you capture audio from other apps by using AudioPlaybackCaptureConfiguration. Don’t worry about other apps capturing your audio: you can opt in or out per audio stream or application. Check it out here.

External Storage

If you use external storage in your app, you’ll need to be aware of the new access restrictions. Starting with target SDK Q, you’ll be sandboxed by default.

There are also changes in how you access media files and photo metadata. You can make your content readable by other apps, to stay compatible with apps that do so already, like the file manager applications which are currently out there.

Location

Users feel safer if they know what data an app is collecting and when – especially location data. Now, the user can permit or revoke permission to access location when the app is in the foreground or always. You’ll need to add a new permission to get the location while the app is in the background. It’s all a part of the new security changes for the location API.

Background Activity Starts

Speaking of restrictions, there are new restrictions on when you can start an Activity from the background. In short, you need to involve the user.

There are many ways you can do this such as pending intents or broadcasts. Google recommends a few approaches, one being using a notification when it makes sense.

Settings Panel

You can use the Settings Panel within your app to let users change settings important to the app itself, depending on the context of what the user is currently involved with. This includes settings for the Internet, NFC, volume and WiFi. They’re as simple to use as launching an Intent!

Settings Panel

Screenshot of connectivity settings panel

Connectivity

Here’s one last restriction for you: Apps can no longer enable or disable Wifi. Fortunately, you have Settings Panels so the user can take care of this for you within your apps! It’s a good tradeoff for more security and privacy.

Platform Improvements

In addition to all that, Q is coming with some more improvements for the platform.

WebView, Accessibility and Text

WebView got some improvements as well. One improvement is a new listener to know when the WebView is unresponsive so your app can act on that.

Accessibility got a one-liner for accessibility actions and an option to vary duration for transient UI.

Text also got a few improvements including an easier API for finding system fonts. Hyphenation is now turned off by default for better performance. Additionally, you can now customize the text magnifier!

Private API Restrictions

To keep our users safer and free from unpredictable crashes, Google is adding more restrictions on calling private APIs. These can change and cause problems for users.

In most cases, a public solution already exists, such as changing something currently private to being public or adding a new API. However, Google is adding private methods to a grey-list for future restriction.

Google has added several solutions. If you don’t see what you need, contact them to figure out a solution.

Android Runtime

Google added more improvements to the Android Runtime (ART)! Along with startup improvements, there’s a generational garbage collector which collects new objects first. This makes using temporary objects cheaper and faster since most of the data used in Android is short-term.

PowerManager

PowerManager, can notify you when a device goes under thermal throttling. If the device is getting hot you can adapt and do less work. This creates a better user experience.

Neural Network API

There are additional improvements to the Neural Network API with 60 new ops. Also, there’s latency reduction with up to nine times reduction for face detection!

Security

Users are more secure with TSL 1.3, now enabled by default, making connections much faster. The biometrics dialog now allows you to request implicit confirmation.

With this dialog, you can also fall back to a passcode if there’s an issue with the biometric recognition. All this is in addition to a new Jetpack Security library, one of many new changes to the Jetpack libraries in general.

Preferences

Keep in mind going that forward android.preferences is now deprecated. You should use androidx.preferences instead. So be sure to migrate!

Contributors

Filip Babić

Final Pass Editor

Over 300 content creators. Join our team.