Compose में ड्रॉइंग करने के बारे में जानकारी
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Compose में पसंद के मुताबिक ड्रॉ करने का तरीका जानें. कस्टम ड्रॉइंग की मदद से, अपने ऐप्लिकेशन के लुक और स्टाइल को बेहतर बनाया जा सकता है. ऐसा तब किया जा सकता है, जब पहले से मौजूद कॉम्पोनेंट आपके ऐप्लिकेशन की ज़रूरतों के हिसाब से न हों.
प्रमुख बिंदु
DrawScope
एक स्टेटलेस ड्रॉइंग एपीआई है. इसका इस्तेमाल करके, आकार, पाथ वगैरह बनाए जा सकते हैं. इसके लिए, कॉम्पोनेंट की स्थिति को मैन्युअल तौर पर बनाए रखने की ज़रूरत नहीं होती.
- ड्रॉइंग में बदलाव करने वाले कई टूल की मदद से,
DrawScope
का ऐक्सेस मिलता है. इससे, आपको दूसरे कॉम्पोज़ेबल के साथ ड्रॉ करने की सुविधा मिलती है:
drawBehind
: यह कंपोज़िट कॉन्टेंट के पीछे दिखता है.
drawWithContent
: कॉन्टेंट को फिर से व्यवस्थित करने के लिए काम का है. आपके पास यह चुनने का विकल्प होता है कि कॉम्पोज़ेबल का कॉन्टेंट, स्प्रेडशीट में शामिल करने से पहले या बाद में दिखाया जाए.
drawWithCache
: ऑब्जेक्ट को तब तक कैश मेमोरी में सेव रखता है, जब तक उनका साइज़ नहीं बदलता या जब तक उनमें मौजूद स्टेट वैरिएबल में बदलाव नहीं होता.
- Compose में निर्देशांक सिस्टम, व्यू सिस्टम जैसा ही होता है.
- सभी ड्रॉ और लेआउट कॉल,
dp
के बजाय पिक्सल वैल्यू में किए जाते हैं. सभी स्क्रीन पर एक जैसा ड्रॉ करने के लिए, dp
का इस्तेमाल करें और ड्रॉ करने से पहले, पिक्सल में बदलें.
- ड्रॉ कॉल हमेशा पैरंट कॉम्पोज़ेबल के हिसाब से होते हैं.
ऐसे संग्रह जिनमें यह गाइड शामिल है
यह गाइड, चुने गए क्विक गाइड के कलेक्शन का हिस्सा है. इसमें Android डेवलपमेंट के बड़े लक्ष्यों के बारे में बताया गया है:
इमेज दिखाएं
अपने Android ऐप्लिकेशन को शानदार लुक देने के लिए, चमकदार और दिलचस्प विज़ुअल इस्तेमाल करने की तकनीकें जानें.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-02-06 (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-02-06 (UTC) को अपडेट किया गया."],[],[],null,["# Intro to drawing in Compose\n\n\u003cbr /\u003e\n\nLearn how to draw something custom in Compose. With custom drawing, you can\nimprove the look and feel of your app when the built-in components don't cover\nexactly what your app needs. \n\nKey points\n----------\n\n- [`DrawScope`](/reference/kotlin/androidx/compose/ui/graphics/drawscope/DrawScope) is a declarative, stateless drawing API to draw shapes, paths, and more without needing to maintain the state of the component manually.\n- Several drawing modifiers give you access to `DrawScope`, letting you draw with other composables:\n - [`drawBehind`](/reference/kotlin/androidx/compose/ui/draw/package-summary#(androidx.compose.ui.Modifier).drawBehind(kotlin.Function1)): draws behind the composables content.\n - [`drawWithContent`](/reference/kotlin/androidx/compose/ui/draw/package-summary#(androidx.compose.ui.Modifier).drawWithContent(kotlin.Function1)): useful for rearranging content. You can choose when to call the content of the composable, either before or after.\n - [`drawWithCache`](/reference/kotlin/androidx/compose/ui/draw/package-summary#(androidx.compose.ui.Modifier).drawWithCache(kotlin.Function1)): caches the objects until the size changes or the state variables read inside change.\n- The coordinate system in Compose is the same as the view system.\n- All draw and layout calls are performed in pixel values, not [`dp`](/reference/kotlin/androidx/compose/ui/unit/package-summary#(kotlin.Int).dp()). To draw consistently across screens, use `dp` and convert to pixels before drawing.\n- Draw calls are always relative to the parent composable.\n\nCollections that contain this guide\n-----------------------------------\n\nThis guide is part of these curated Quick Guide collections that cover\nbroader Android development goals: \n\n### Display images\n\nDiscover techniques for using bright, engaging visuals to give your Android app a beautiful look and feel. \n[Quick guide collection](/develop/ui/compose/quick-guides/collections/display-images) \n\nHave questions or feedback\n--------------------------\n\nGo to our frequently asked questions page and learn about quick guides or reach out and let us know your thoughts. \n[Go to FAQ](/quick-guides/faq) [Leave feedback](https://issuetracker.google.com/issues/new?component=1573691&template=1993320)"]]