How to remove white underline in a SearchView widget in Toolbar Android

后端 未结 10 2065
挽巷
挽巷 2020-12-01 03:33

I am using Toolbar search widget in my project. Everything works fine but expect the thing which I am completely stuck up with removing the underline below search field in m

10条回答
  •  借酒劲吻你
    2020-12-01 03:50

    For AndroidX I used this based on other answers here,

    mSearchView.findViewById(androidx.appcompat.R.id.search_plate)
            .setBackgroundColor(Color.TRANSPARENT);
    

提交回复
热议问题