Android-when you click EditText, the keyboard pops up. The blank space beyond EditText disappears. android-edittext

Source: Internet
Author: User

Android-when you click EditText, the keyboard pops up. The blank space beyond EditText disappears. android-edittext

When you click EditText in android, the soft keyboard will pop up. However, when you have input or want to hide the soft keyboard, you can click the hidden button on the soft keyboard. This method is feasible, however, to improve user experience, we often need to implement this function: to hide the soft keyboard after the input is complete, we can directly click other blank spaces other than EditText to hide the soft keyboard, this approach is much easier than clicking the hidden button on the keyboard itself.

To implement the above functions, you only need to override the public boolean onTouchEvent (MotionEvent event) method and perform corresponding soft keyboard hidden processing operations.

InputMethodManager imm= (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);  @Override      public boolean onTouchEvent(MotionEvent event) {          // TODO Auto-generated method stub          if (event.getAction() == MotionEvent.ACTION_DOWN) {  if (myActivity.this.getCurrentFocus() != null) {                  if (myActivity.this.getCurrentFocus().getWindowToken() != null) {                      imm.hideSoftInputFromWindow(myActivity.this.getCurrentFocus().getWindowToken(),                              InputMethodManager.HIDE_NOT_ALWAYS);                  }              }          }          return super.onTouchEvent(event);      }  

 

Related Article

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.