स्मार्टफ़ोन
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
फ़ोन पर उपलब्ध मल्टीमोडल
क्षमताओं का इस्तेमाल करके उपयोगकर्ताओं को कभी भी, कहीं भी काम करने में मदद करें. इन सुविधाओं में आवाज़ और विज़ुअल, दोनों शामिल हैं.
मॉडल
स्क्रीन वाले मोबाइल डिवाइसों के लिए, आपकी सेट की गई कार्रवाई में दो तरह के तरीके काम करने चाहिए:
- बोलकर खोजने की सुविधा
- कीबोर्ड पर बातचीत शुरू करने की सुविधा
ध्यान दें कि किसी कार्रवाई में उपयोगकर्ता इन तरीकों के बीच स्विच कर सकते हैं. पक्का करें कि आप खास तौर पर इनमें से हर एक मॉडल के लिए, बेहतर जवाब तैयार करें. उदाहरण के लिए, कीबोर्ड पर नाम शुरू करने पर, अगर SSML में कोई आवाज़ नहीं दी गई है, तो उस आवाज़ को चलाया नहीं जाता. अगर जवाब इस बात पर निर्भर करता है कि उपयोगकर्ता को आवाज़ सुनाई दे रही है और डिवाइस,
कीबोर्ड मोडलिटी का इस्तेमाल कर रहा है, तो आपकी सेट की गई कार्रवाई को बताना होगा कि
किस तरह की आवाज़ सुनाई देगी.
किसी स्मार्टफ़ोन पर स्क्रीन की उपलब्धता और इनपुट के तरीके का पता लगाने के लिए, इस कोड का इस्तेमाल किया जा सकता है:
- जिसमें स्क्रीन हो:
if (conv.screen)
- आवाज़ के तरीके का इस्तेमाल किया जाता है:
if (conv.input.type === 'VOICE')
- कीबोर्ड की सेटिंग का इस्तेमाल करता है:
if (conv.input.type === 'KEYBOARD')
सलाह और सबसे सही तरीके

ये कार्रवाइयाँ आज़माएँ
यह सैंपल आज़माएं
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eBuild Actions that enable users to accomplish tasks on their mobile devices using voice and visual interactions.\u003c/p\u003e\n"],["\u003cp\u003eSupport both voice and keyboard invocation methods, tailoring responses appropriately for each modality.\u003c/p\u003e\n"],["\u003cp\u003eEnhance the user experience with rich responses, push notifications, and concise conversational flows.\u003c/p\u003e\n"],["\u003cp\u003eLeverage deep links to seamlessly integrate your Action with other platforms like websites and apps.\u003c/p\u003e\n"]]],["Actions on mobile devices should support both voice and keyboard input. Developers can detect screen availability and input modality using `conv.screen` and `conv.input.type` respectively. When using keyboard input, sounds should be described in text instead of played. Rich responses and theme customization enhance screen usage, while push notifications and deep links maintain user engagement. Prioritize quick task completion and intuitive conversational flows, considering the user is on the go.\n"],null,["# Smartphones\n\nHelp users get things done while they're on-the-go, using the full multimodal\ncapabilities available on phones, including both voice and visuals.\n\nModalities\n----------\n\nFor mobile devices which have screens, your Action needs to support two modalities:\n\n- Voice invocation\n- Keyboard invocation\n\nNote that users are free to move between these modalities within an Action. Make\nsure to design your rich responses specifically for each of these\nmodalities. For example, with keyboard invocation, no sounds are played if they\nare provided in [SSML](/assistant/conversational/df-asdk/ssml). If the response relies on the user hearing a sound and\nthe device is using keyboard modality, your Action needs to describe what kind\nsound of sound is played.\n\nTo detect the availability of a screen and the [input modality](/assistant/conversational/webhook/reference/rest/Shared.Types/InputType) on a smartphone, you can use the following code:\n\n- **Has screen** : `if (conv.screen)`\n- **Uses voice modality** : `if (conv.input.type === 'VOICE')`\n- **Uses keyboard modality** : `if (conv.input.type === 'KEYBOARD')`\n\nTips \\& best practices\n----------------------\n\n- Use [rich responses](/assistant/conversational/df-asdk/rich-responses) and [theme customization](/assistant/conversational/df-asdk/rich-responses#customizing_your_responses) to make the most out of the screen.\n- Consider using [push notifications](/assistant/engagement/notifications) to keep users engaged on mobile devices.\n- Remember that the user is on the go and try to help them achieve their task as quickly as possible. To learn how to craft natural and intuitive conversational flows, see the [conversation design guide](/assistant/conversational/df-asdk/design).\n- [Deep link directly to your Action](/assistant/engagement/assistant-links) from your website, mobile app, or social media for experiences better handled via voice.\n\nTry these Actions\n-----------------\n\n- [Starbucks](//assistant.google.com/services/a/uid/000000f2fb2c47e0?jsmode)\n- [SpotHero](//assistant.google.com/services/a/uid/00000031e1da95c6?jsmode)\n- [My Storytime](//assistant.google.com/services/a/id/6ebb0e742351c0dd?jsmode)\n\nTry this sample\n---------------\n\n- [Dialogflow conversation components sample](//github.com/actions-on-google/dialogflow-conversation-components-nodejs)"]]