Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List view Focus while using D-PAD

In my Image there is a sidebar and ListView there, I access every Button by using D-PAD. When side bar search button has focus and I press right D-PAD button, I want the focus to go to the ListView's first item. But, in my case it goes to the second item. If Down arrow has focus and i press right button it goes to 4th list item.So , i need to prevent this also.How to move the focus to the 1st one?

if (Search != null && Search.hasFocus()) {
            // Search.setNextFocusRightId(R.id.listView);
//          listView.smoothScrollToPosition(0);
            listView.setChoiceMode(1);
            listView.setItemChecked(0, true);
        }

enter image description here

like image 990
learner Avatar asked Apr 29 '26 17:04

learner


2 Answers

Make a dummy view without background and place it in the same layout as your listview. Make it focusable and set nextFocusRight of your Search view to id/dummy.

<ListView
    android:id="@+id/listview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:choiceMode="singleChoice"
    android:listSelector="@null"
    android:background="@null"
    ></ListView>
<View
    android:id="@+id/dummy"
    android:layout_width="1dp"
    android:layout_height="1dp"
    android:focusable="true"
    />

Your searchView:

<YourSearchView
 android:nextFocusItemRight=@+id/dummy/>

Then in the code, set an OnFocusChangedListener to the dummy view which will indicate that the ListView is supposed to gain focus. Inside the listener, request focus for the listview and set selection to 0 as follows:

View dummy = rootView.findViewById(R.id.dummy);
        dummy.setOnFocusChangeListener(new View.OnFocusChangeListener()
        {
            @Override public void onFocusChange(View v, boolean hasFocus)
            {
                if (hasFocus)
                {
                    listView.post(new Runnable() {
                        @Override
                        public void run() {
                            listView.requestFocus();
                            listView.setSelection(0);
                        }
                    });
                }
            }
        });

Make sure you use @+id for nextFocusItemRight instead of @id. Hope it helps, otherwise post a comment.

like image 156
vandus Avatar answered May 01 '26 05:05

vandus


The best thing to do is Override the dispatchKeyevent in your Activity class then set the focus/selection to the place wherever you like in Listview .

    @Override
public boolean dispatchKeyEvent(KeyEvent event) {




    boolean handled  =  super.dispatchKeyEvent(event);

    if(!handled  &&  event.getAction() ==  KeyEvent.ACTION_UP)
    {
        if(yourParentViewGroup.getFocusedChild() is  your SearchView &&  event.getKeyCode() ==  KeyEvent.KEYCODE_DPAD_RIGHT )
        {

            yourListvIew.setSelction(0);
            handled = true;
        }

    }

    return handled;

But remember to return "true" if you are going to handle the Focus or selection logic else it will invoke android focusfinder algorithm and focus/selection will shift to the nearest View.

like image 28
manjusg Avatar answered May 01 '26 06:05

manjusg



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!