Can anyone help me to remove this or change it to another color ?
This Picture
Thank You so much for your help
Can anyone help me to remove this or change it to another color ?
This Picture
Thank You so much for your help
Add this to your SearchView in xml, if using API 21 or higher. If using an API lower than 21. use android
instead of app
.
app:queryBackground="@android:color/transparent"
View v = searchView.findViewById(android.support.v7.appcompat.R.id.search_plate);
v.setBackgroundColor(Color.parseColor("here give color code for background"));
u can use
View searchplate = (View)mSearchView.findViewById(android.support.v7.appcompat.R.id.search_plate);
searchplate.getBackground().setColorFilter(ContextCompat.getColor(this, R.color.another_color) ,PorterDuff.Mode.MULTIPLY);