वर्चुअल QWERTY
कीबोर्ड में उपलब्ध डिफ़ॉल्ट कुंजियों के अलावा अतिरिक्त कुंजी जोड़ने की हमेशा आवश्यकता होती है ।
XML का उपयोग करना
<EditText android:text="@+id/EditText01"
android:id="@+id/EditText01"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:imeOptions="actionDone"/>
By Programmatic Way
एक EditorInfo
सबसे उपयोगी वर्ग है जब आपको अपने एंड्रॉइड एप्लिकेशन में किसी भी प्रकार के उपयोगकर्ता इनपुट से निपटना पड़ता है।
IME_ACTION_DONE:
यह क्रिया इनपुट के बिना कुछ भी करने के लिए "किया गया" ऑपरेशन करता है और IME बंद हो जाएगा।
EditTextSample.setImeOptions(EditorInfo.IME_ACTION_DONE);
अधिक जानकारी के लिए आप http://developer.android.com/reference/android/view/inputmethod/Editor/fo पर जा सकते हैं