Blog Infos
Author
Published
Topics
Published

Part of the Material You concept is Themed Icons. It means that all icons starting from Android 12 will be the same color and change dynamically based on wallpapers.

Android 12 introduced a beta option for enabling Themed Icons, but icons looked inconsistently across the system. Only Google apps had themed icons, other looks the same as previous.

Android 12

So far not available no API for developers. I found only a few materials on how to implement themed icons on Android 12.

For example:

Briefly, we need to override icon colors in the values-v31 folder to use new Material You colors.

It will work, but with several limitations:

  1. Changing color in the system doesn’t apply to the launch icon. Only after reinstall.
  2. Disabling the Themed icons feature doesn’t affect the launch icon. Simply, the icon has dynamic color permanently.

It’s logical, the application can’t have two launch icons simultaneously.

The Pixel Launcher does the whole magic under the hood and stores an additional set of icons with monochrome icons for all Google apps.

Pixel Launcher APK resources

Android 13 way

Google recently announced the first Developer Preview of Android 13, while there are a lot of new APIs. One of them is that developers got access to API for Themed app icons.

To implement the new approach, we need to take several steps:

  1. Clear icon from shadows, unnecessary details and etc. Otherwise, the icon will differ from the uniform style.

 

Icon with shadow

 

2. Add <monochrome android:drawable=""/> attribute to the <adaptive-icon>element.

 

monochrome tag in icon resource

Job Offers

Job Offers

There are currently no vacancies.

OUR VIDEO RECOMMENDATION

,

Bringing Android 13 to Tesla vehicles with Flutter Web

Did you know that you can use your favorite Android apps while driving your Tesla? Join me in this session to learn how the Tesla Android Project made it all possible with Flutter Web on…
Watch Video

Bringing Android 13 to Tesla vehicles with Flutter Web

Michał Gapiński
Senior Software Engineer
HappyByte

Bringing Android 13 to Tesla vehicles with Flutter Web

Michał Gapiński
Senior Software Engi ...
HappyByte

Bringing Android 13 to Tesla vehicles with Flutter Web

Michał Gapińsk ...
Senior Software Engineer
HappyByte

Jobs

Note: If android:roundIcon and android:icon are both in your manifest, you must either remove the reference to android:roundIcon or supply the monochrome icon in the drawable defined by the android:roundIcon attribute.

That’s all, the system automatically applies tint color for the monochrome icon.

Demo result:

Part of the Material You concept is Themed Icons. It means that all icons starting from Android 12 will be the same color and change dynamically based on wallpapers.
Other cases

The recommended approach is to use flat icons for the monochrome icon resource. But in reality, we can have a situation where the icon will be layered or 3d.

Let’s take a look at the sample icon Microsoft Teams.

https://commons.wikimedia.org/wiki/File:Microsoft_Office_Teams_(2018%E2%80%93present).svg

 

Let’s do steps from the previous part, remove the shadow <path /> , and launch sample application.

 

Microsoft Teams themed icon

 

Ooops, appear horrible. The problem is that the original icon uses different color shades to show deep.

How to achieve the same effect in the monochrome icon?

The solution is pretty simple. We will apply <android:fillAlpha=""/> for necessary <path/>

Apply fillAlpha for path

By the way, in case more complex icon designers should provide a new resource drawn from scratch.

Thanks for your attention 😎

References:

https://developer.android.com/about/versions/13/features#themed-app-icon-specs

Sample projects:

____________________

Powered by Why Android? community

YOU MAY BE INTERESTED IN

YOU MAY BE INTERESTED IN

blog
While Targeting Android 13 , OnbackPressed Override Function is deprecated😢. Usually, we used to…
READ MORE
blog
Today, We will explore the New notification 🔔 runtime permission that was added in…
READ MORE
blog
In this article, we will explore Android 13’s new clipboard UI, as well as…
READ MORE
blog
App launcher icons, the very first interaction that someone has with your app is…
READ MORE

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.

Menu