2025 年 3 月 27 日より、AOSP のビルドとコントリビューションには aosp-main
ではなく android-latest-release
を使用することをおすすめします。詳細については、AOSP の変更をご覧ください。
円形アイコンを実装する
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
円形のランチャー アイコンは、Android 7.1.1 以降でサポートされています。デフォルトでは有効になっていません。デバイスの実装で円形アイコンを使用するには、デバイス上でリソース オーバーレイを編集して有効にする必要があります。
オーバーレイを使用するリソース ファイルは、frameworks/base/core/res/res/values/config.xml
にあります。
円形アイコンを有効にするには、オーバーレイ ファイルの config_useRoundIcon
設定を false
から true
に変更します。
<!-- Flag indicating whether round icons should be parsed from the application manifest. -->
<bool name="config_useRoundIcon">true</bool>
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2025-03-26 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-03-26 UTC。"],[],[],null,["# Implement circular icons\n\nCircular [launcher\nicons](https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive) are supported in Android 7.1.1 and later. Circular launcher icons\nare not enabled by default. To use circular icons in your device\nimplementation, you must edit the [resource\noverlay](/docs/setup/add-device#use-resource-overlays) on your device to enable them.\n\nThe resource file you are using an overlay on is at:\n[frameworks/base/core/res/res/values/config.xml](https://android.googlesource.com/platform/frameworks/base/+/android16-release/core/res/res/values/config.xml)\n\nTo enable circular icons, change the `config_useRoundIcon`\nsetting in your overlay file from `false` to `true`: \n\n```\n\u003c!-- Flag indicating whether round icons should be parsed from the application manifest. --\u003e\n\u003cbool name=\"config_useRoundIcon\"\u003etrue\u003c/bool\u003e\n```"]]