[Android] disable Edittext to bring up a soft keyboard and display the cursor properly. androidedittext

Source: Internet
Author: User

[Android] disable Edittext to bring up a soft keyboard and display the cursor properly. androidedittext


/*** Disable Edittext to bring up the software disk. The cursor is still displayed normally. */Public void disableShowSoftInput () {if (android. OS. build. VERSION. SDK_INT <= 10) {editText. setInputType (InputType. TYPE_NULL);} else {Class <EditText> cls = EditText. class; Method method; try {method = cls. getMethod ("setShowSoftInputOnFocus", boolean. class); method. setAccessible (true); method. invoke (editText, false);} catch (Exception e) {// TODO: handle exception} try {method = cls. getMethod ("setSoftInputShownOnFocus", boolean. class); method. setAccessible (true); method. invoke (editText, false);} catch (Exception e) {// TODO: handle exception }}}



For Android EditText, how does one set the default value to pop up without a soft keyboard?

EditText is a soft keyboard that pops up when the focus is obtained. You can focus on other controls during activity initialization. You can configure android: getFocus = "true" in xml for the focus "; the spelling may be wrong. The effect is good, and there is no IDE in hand.

EditText automatically obtains the focus, but does not bring up the Input Soft Keyboard ???

InputMethodManager im = (InputMethodManager) getSystemService (INPUT_METHOD_SERVICE); im. showSoftInput (TV, 0 );
 

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.