How to make android search bar full width in api 17 or higher?

I want to make the full width of the search frame without padding.

I saw this answer How to get SeekBar to take the full width of the parent

but in api 17 and above this does not work. There is a gasket left and right of the arrow. How to remove this add-on?

enter image description here

+4
source share
3 answers

I just installed the registration at runtime, and now everything is in order!

musicSeekbar.setPadding(0,0,0,0); 
+10
source

You can get it working using XML (API 17+):

 android:paddingStart="0dp" android:paddingEnd="0dp" 
+1
source

you can use the parent layout before the layout to search and put your search layout in another so you can fill_parent

0
source

Source: https://habr.com/ru/post/1201611/


All Articles