Margin between SearchView and collapseIcon in toolbar

后端 未结 2 1096
北海茫月
北海茫月 2020-12-18 23:46

I\'m trying to implement android.support.v7.widget.SearchView with a collapseIcon on the Toolbar. Everything works fine i.e, the

2条回答
  •  一向
    一向 (楼主)
    2020-12-18 23:57

    I managed to solve the problem by looking at the xml file that's used by SearchView, so the padding can be removed/reduced by changing the leftMargin value:

    layoutParams.leftMargin = 0;
    

    for the following LinearLayout inside the SearchView:

    LinearLayout searchEditFrame = (LinearLayout) searchView.findViewById(R.id.search_edit_frame);
    

提交回复
热议问题