Android searchView drop down menu screen width

后端 未结 2 948
情深已故
情深已故 2021-01-27 00:48

Situation:

I have a searchview widget in my appcompat toolbar that allows custom suggestions via sqlitedatabase.

Problem:

相关标签:
2条回答
  • 2021-01-27 01:29

    The size of the width you want, can be achieve by using Wrap content . Try this code: searchAutoCompleteTextView.setDropDownWidth(ViewGroup.LayoutParams.WRAP_CONTENT);

    I came to this answer when i went through this link:

    https://www.youtube.com/watch?v=408pMAQFnvs

    0 讨论(0)
  • 2021-01-27 01:30

    You must get reference to SearchAutoComplete object which SearchView using , then set its size and change the background resource which has padding's, please refer to my answer here :

    https://stackoverflow.com/a/43481639/5255624

    0 讨论(0)
提交回复
热议问题