<ऑनस्वाइप>
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
जब उपयोगकर्ता लेआउट पर स्वाइप करता है, तब की जाने वाली कार्रवाई के बारे में बताता है. इसकी रफ़्तार
मोशन सीक्वेंस और टारगेटेड व्यू की गति
स्वाइप की गति और दिशा, जो वैकल्पिक के साथ आपकी सेट की गई सीमाओं पर निर्भर है
पैरामीटर का इस्तेमाल करें.
एक <Transition>
के लिए कई <OnSwipe>
नोड हो सकते हैं. हर नोड में एक वैल्यू होनी चाहिए
<OnSwipe>
, स्वाइप करने की अलग दिशा और अलग कार्रवाई के बारे में बता रहा है
जब उपयोगकर्ता स्वाइप करता है.
वाक्य-विन्यास
<OnSwipe
motion:touchAnchorId="@id/target_view"
motion:touchAnchorSide="side"
[ motion:dragDirection="direction" ]
[ motion:dragScale="scale" ]
[ motion:maxVelocity="maxVelocity" ]
[ motion:maxAcceleration="maxAcceleration" ]
/>
विशेषताएं
motion:touchAnchorId
- स्वाइप से मूव की जा रही इमेज देखें.
motion:touchAnchorSide
- टारगेट व्यू का वह साइड जिसके लिए स्वाइप ऐंकर किया गया है.
MotionLayout
ने पहले से ही
ऐंकर और उपयोगकर्ता की उंगली के बीच एक जैसी दूरी. स्वीकार की जाने वाली वैल्यू
"left"
, "right"
, "top"
, और "bottom"
हैं.
motion:dragDirection
- उपयोगकर्ता के स्वाइप करने की दिशा. अगर यह एट्रिब्यूट सेट किया गया है, तो
<OnSwipe>
सिर्फ़ बताई गई दिशा में स्वाइप करने पर लागू होता है. स्वीकार की जाने वाली वैल्यू
"dragLeft"
, "dragRight"
, "dragUp"
, और "dragDown"
हैं.
motion:dragScale
स्वाइप की लंबाई के संबंध में दृश्य के मूव होने की दूरी को नियंत्रित करता है. कॉन्टेंट बनाने
डिफ़ॉल्ट मान 1 है, जो बताता है कि व्यू उतना ही दूर है जितना स्वाइप करता है.
अगर dragScale
, 1 से कम है, तो व्यू की मूवमेंट, स्वाइप की गई दूरी से कम होती है.
उदाहरण के लिए, 0.5 के dragScale
का मतलब है कि अगर स्वाइप 4 सें॰मी॰ की हलचल हुई, तो
टारगेट व्यू 2 सें॰मी॰ खिसक जाता है.
अगर dragScale
एक से ज़्यादा है, तो व्यू, स्वाइप से ज़्यादा दूर जाएगा
दूरी. उदाहरण के लिए, 1.5 के dragScale
का मतलब है कि अगर स्वाइप 4 जाता है, तो
सेमी, लक्ष्य दृश्य 6 सेमी.
motion:maxVelocity
टारगेट व्यू की ज़्यादा से ज़्यादा वेलोसिटी.
motion:maxAcceleration
टारगेट व्यू की ज़्यादा से ज़्यादा रफ़्तार.
इसमें शामिल
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. 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,["# <OnSwipe>\n\nSpecifies the action to perform when the user swipes on the layout. The speed of\nthe motion sequence and the motion of the targeted view are affected by the\nspeed and direction of the swipe, subject to the limits you set with optional\nparameters.\n\nThere can be multiple `\u003cOnSwipe\u003e` nodes for a single `\u003cTransition\u003e`, with each\n`\u003cOnSwipe\u003e` specifying a different swipe direction and a different action to\nperform when the user performs that swipe.\n\nSyntax\n------\n\n```xml\n\u003cOnSwipe\n motion:touchAnchorId=\"@id/target_view\"\n motion:touchAnchorSide=\"side\"\n[ motion:dragDirection=\"direction\" ]\n[ motion:dragScale=\"scale\" ]\n[ motion:maxVelocity=\"maxVelocity\" ]\n[ motion:maxAcceleration=\"maxAcceleration\" ]\n /\u003e\n```\n\nAttributes\n----------\n\n`motion:touchAnchorId`\n: View that is being moved by the swipe.\n\n`motion:touchAnchorSide`\n: Side of the target view that the swipe is anchored to. `MotionLayout` keeps a\n constant distance between the anchor and the user's finger. Acceptable values\n are `\"left\"`, `\"right\"`, `\"top\"`, and `\"bottom\"`.\n\n`motion:dragDirection`\n: Direction of the user's swipe motion. If this attribute is set, this\n `\u003cOnSwipe\u003e` only applies to swipes in the specified direction. Acceptable values\n are `\"dragLeft\"`, `\"dragRight\"`, `\"dragUp\"`, and `\"dragDown\"`.\n\n`motion:dragScale`\n\n: Controls the distance the view moves relative to the length of the swipe. The\n default value is 1, indicating that the view moves as far as the swipe does.\n If `dragScale` is less than 1, the view moves less than the swipe distance.\n For example, a `dragScale` of 0.5 means that if the swipe moves 4 cm, the\n target view moves 2 cm.\n\n If `dragScale` is greater than 1, the view moves farther than the swipe\n distance. For example, a `dragScale` of 1.5 means that if the swipe moves 4\n cm, the target view moves 6 cm.\n\n`motion:maxVelocity`\n\n: Maximum velocity of the target view.\n\n`motion:maxAcceleration`\n\n: Maximum acceleration of the target view.\n\nContained in\n------------\n\n- [`\u003cTransition\u003e`](/training/constraint-layout/motionlayout/ref/transition)"]]