Currently, I have a layout which contains a Button, a TextView and an EditText. When the layout is displayed, the focus will be automa
Button
TextView
EditText
The last suggestion is the correct solution. Just to repeat, first set android:focusable="true" in the layout xml file, then requestFocus() on the view in your code.
android:focusable="true"
xml
requestFocus()