SearchView in OptionsMenu not full width

前端 未结 6 450
梦如初夏
梦如初夏 2020-11-30 03:46

I have a working SearchView which expands in my OptionsMenu when the user taps on the search icon. However it only expands within the available space among the other Option

6条回答
  •  遥遥无期
    2020-11-30 04:21

    There are so many ways to solve this issue - I'll just add the one I've used in several apps.

    I have my custom SearchView (with some other customization) which extends android.support.v7.widget.SearchView and in order to stretch to full width:

    @Override
    public void setLayoutParams(final ViewGroup.LayoutParams params) {
        params.width = ViewGroup.LayoutParams.MATCH_PARENT;
        super.setLayoutParams(params);
    }
    

提交回复
热议问题