Android EditText regain focus issue

Source: Internet
Author: User

In the Android development process about EditText at setfocusable (false), after setting setfocusable (TRUE) when you need to get the focus input again, the problem is still not getting focus:

Workaround:

Set it to EditText!

Et.setfocusable (TRUE);

Et.setfocusableintouchmode (TRUE);

Et.requestfocus ();

Et.findfocus ();

If you regain focus and then SetText ("...") may fail, you can try adding a et.invalidate () after SetText ();

Android EditText Focus Issue

In Android, to get the focus of the control, you need to setfocus it first and then Requestfocus. Take the button as an example: Btn.setfocusable (True); Btn.setfocusableintouchmode (true); then get focus: Btn.requestfocus (); Btn.requestfocusfromtouch ();

How does Android specify a EditText priority to get focus?

<edittext

Android:id= "@+id/text"

Android:layout_width= "Fill_parent"

android:layout_height= "Wrap_content"

android:layout_weight= "0"

Android:paddingbottom= "4" ><requestfocus/></edittext>

It's supposed to be the last <requestfocus./> controls are valid

Android EditText regain focus issue

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.