Android Hidden Input Keyboard

Source: Internet
Author: User

1 If the activity page has edittext, in order not to affect the user experience, we need to enter the page without popping the soft keyboard. How to set it up?

When you configure activity in the Mainifest.xml file, you can set these two sentences:

Android:configchanges= "Orientation|keyboardhidden" android:windowsoftinputmode= "AdjustUnspecified|stateHidden"

2 If there is a edittext in the dialog box, when the input is complete, the soft keyboard is automatically hidden so that no more "OK", the black screen area appears in the keyboard area.


Hide IME public  void Closesoftkeboard (EditText edit) {    Inputmethodmanager Inputmethodmanager = ( Inputmethodmanager) getactivity (). Getsystemservice (Context.input_method_service);    Inputmethodmanager.hidesoftinputfromwindow (Edit.getwindowtoken ()    , 0);    }

Edit.addtextchangedlistener (New Textwatcher () {@Overridepublic void ontextchanged (charsequence s, int start, int before , int count) {} @Overridepublic void beforetextchanged (charsequence s, int start, int count,int after) {} @Overridepublic Vo ID aftertextchanged (Editable s) {if (s.tostring (). Length () ==11) {Closesoftkeboard (edit);}});


Android Hidden Input Keyboard

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.