I have the ListView with categories and gridview with items for selected category.
I need this: when I choose a category by clicking - set focus on first item in gridview. But now it works when I choose a category by keyboard...
Some code:
gridView.requestFocus();
gridView.setSelection(0);
Some Logs:
gridView.isInTouchMode: true
gridView.isFocusableInTouchMode: true
Thank you.