android-keypad पर टैग किए गए जवाब

15
गतिविधि प्रारंभ पर प्रदर्शन से कीबोर्ड को रोकें
मेरे पास एक Edit Textइनपुट वाली गतिविधि है । जब गतिविधि आरंभ की जाती है, तो Android कीबोर्ड दिखाया जाता है। जब तक उपयोगकर्ता इनपुट पर ध्यान केंद्रित नहीं करता, तब तक कीबोर्ड कैसे छिपा रह सकता है?

19
नरम कीबोर्ड दिखाए जाने पर लेआउट को ऊपर ले जाएं?
मेरे पास रिलेटिव व्यू में कुछ तत्व हैं, जो एलीवेटेड बॉटम एट्रिब्यूट सेट के साथ हैं, जब सॉफ्ट कीबोर्ड आता है तो सॉफ्ट कीबोर्ड द्वारा एलिमेंट्स को छिपाया जाता है। मैं उन्हें ऊपर ले जाना चाहूंगा ताकि यदि कीबोर्ड के ऊपर पर्याप्त स्क्रीन स्पेस दिखाई दे, या कीबोर्ड के ऊपर …

24
कॉपी / पेस्ट को / से EditText में कैसे निष्क्रिय करें
मेरे आवेदन में, एक पंजीकरण स्क्रीन है, जहां मैं नहीं चाहता कि उपयोगकर्ता EditTextफ़ील्ड में पाठ को कॉपी / पेस्ट कर सके । मैंने onLongClickListenerप्रत्येक पर एक सेट किया है EditTextताकि कॉपी / पेस्ट / इनपुटमेथोड और अन्य विकल्प दिखाने वाला संदर्भ मेनू दिखाई न दे। इसलिए उपयोगकर्ता संपादन फ़ील्ड …

10
नरम कीबोर्ड पॉप अप होने पर पृष्ठ स्क्रॉल करें
मेरे पास एक <ScrollView>लेआउट है: <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/my_scrollview" android:layout_width="fill_parent" android:layout_height="wrap_content" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" > <EditText android:id="@+id/input_one" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" > <EditText android:id="@+id/input_two" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" > <EditText android:id="@+id/input_three" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" > <Button android:id="@+id/ok_btn" android:layout_width="200dp" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="20dp" android:text="@string/ok_str" /> </LinearLayout> </ScrollView> …

19
डिफ़ॉल्ट रूप से संख्या कीपैड के साथ EditText, लेकिन वर्णमाला वर्णों की अनुमति
मेरे पास एक EditText बॉक्स है और मैं चाहता हूं कि डिफ़ॉल्ट कीबोर्ड जो तब आता है जब इसे संख्यात्मक कीपैड के रूप में चुना जाता है, क्योंकि अधिकांश उपयोगकर्ता संख्याओं में प्रवेश करेंगे। हालाँकि, मैं उपयोगकर्ताओं को वर्णमाला के वर्णों में भी प्रवेश करने की अनुमति देना चाहता हूँ, …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.