There are an EditText and a TextView in my Activity. I want to set focus on the TextView when the Activity starts. I used the following code:
TextView my
In order to request focus to TextView you need to set focusable="true" and focusableInTouchMode="true" as follows:
focusable="true"
focusableInTouchMode="true"