LoginSignup
3
4

More than 1 year has passed since last update.

Android13で追加されたMaterial YouのThemed app iconsに対応する

Posted at

Android13では、ユーザーのテーマに合わせてランチャーアイコンのtintを設定する機能が新たに追加されました。
これにアプリ側で対応する方法を紹介します。
https://developer.android.com/about/versions/13/features#themed-app-icons
image.png

対応

Adaptive iconに<monochrome>を一行追加すればOKです。

<?xml version="1.0" encoding="utf-8"?>
...
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <monochrome android:drawable="@drawable/ic_launcher_monochrome" />
    ...
</adaptive-icon>

参考

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4