Android: select all text on focus on EditField
问题 I'm trying to get Android to select all the text in an EditText field when it gets the focus. I'm using this attribute in the layout (on both fields): android:selectAllOnFocus="true" I'm not sure if this is relevant, but to get the cursor to the first editable field (there's also a disabled field before it), I'm using the following commands: quizStartNum.setFocusable(true); quizStartNum.requestFocus(); But, while the cursor does move to the desired field when the layout is first displayed,