Skip to content Skip to sidebar Skip to footer

Android Gridview Focus Order

Help me, please! How can I set an order to changing focus in gridview with edittexts? Now it looks like this: (1)(2)(3) (4)(5)(6) (7)(8)(9) When I press 'Next' on keyboard, focus m

Solution 1:

Get an instance of your EditText in the code, then call edittext1.setNextFocusDownId(R.id.edittext2); and hence do this for all youre EditText.


Post a Comment for "Android Gridview Focus Order"