SetSelection attribute of EditText, setselection

Source: Internet
Author: User

SetSelection attribute of EditText, setselection

1. How can I make edittext click to select all content?

EditText. setSelection (0, length); editText. setSelection (0); editText. setSelectAllOnFocus (true );


2. Remember a bug in setting the default setSelection for EditText.

Requirement: When renaming, the name before the suffix of the selected file should be selected by default;

The Code is as follows:

Int index = name. lastIndexOf ("."); if (index> 0) renameEditText. setSelection (0, index );

However, if the app crashes during renaming of some files, the following error is returned:
Java. lang. IndexOutOfBoundsException: setSpan (32... 32) ends beyond length 30

I cannot explain it. My index is 32. Where does beyond 30 come from? This error is reported because the maxLength attribute of EditText is set to 30 in the layout file! Record here!

 

EditText. setSelection (0, length); editText. setSelection (0); editText. setSelectAllOnFocus (true );

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.