Change focus to a button while a listview is there, when loading the Activity
Is it possible to give focus to a button when the activity starts, while a listView is there on the layout in Android? I tried the following code, but didn't work for me.
button1.requestFocus();
Further I tried
listview.clearFocus();
button1.requestFocus();
Still didn't work.. Can anyone see anything that I am doin开发者_C百科g wrong or is there a proper way to do it?
Have you tried modifying focusableInTouchMode
parameter? Similar problem is discussed here: Stop EditText from gaining focus at Activity startup
精彩评论