हमारा सुझाव है कि 27 मार्च, 2025 से 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-07-27 (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-07-27 (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```"]]