0

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.

Sinigami
  • 449
  • 3
  • 20
  • 38

2 Answers2

2

Try this code :

gridView.setFocusable(true); 
gridView.setFocusableInTouchMode(true);

And also set this attribute in your GriView

android:focusableInTouchMode="true"
SweetWisher ツ
  • 7,296
  • 2
  • 30
  • 74
1

I solved my issue with this code:

    gridView.requestFocusFromTouch();
    gridView.setSelection(0);
Sinigami
  • 449
  • 3
  • 20
  • 38