problem: Android:editable is Deprecated:use A to make it editable Mean:Android's:Edit YesObjection:Use<</span> EditText > edit it
Analysis:About the read-only problem with the EditText control, that is, the content cannot be changed through the UI, but the content can be selected for replication. In the early SDK, EditText has the editable attribute, now this property has deprecated . Workaround: In fact, just one line of code can be done Et.setkeylistener (null), note that this is not setonkeylistener, but Setkeylistener. This method is a member of the TextView, the effect after the call is fully expected, and the input method will not pop up after the focus is received . the following is an explanation of the official document sets the key listener to being used with this TextView. This can is null to disallow user input. Note that this method had significant and subtle interactions with soft keyboards and other input Method:see KeyListener. getContentType () for important details. Calling this method would replace the current content type of the text view with the content type returned by the key Liste Ner. be warned that if you want a TextView with a key listener or movement method is not the focusable, or if you want A TextView without a key listener or movement method to being focusable, you must call Setfocusable again after calling this To get the focusability back the want it.