Android Question AutoCompleteEditText change height box results

scsjc

Well-Known Member
Licensed User
Longtime User
Hello,

I'm use a autocompleteEditText, with item list and cant see the last items, because is in background of keyboard

Is possible change the size of box from autocompleteedittext ?


problem:
a.jpg b.jpg


Thanks
 

Ricky D

Well-Known Member
Licensed User
Longtime User
I wrote my own autocomplete that works but it's very basic and I can't put it in a library
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Sorry, you can use other similar views (SearchView)
Additionally

Advantages over AutoCompleteEditText:
  • SearchView uses an internal index that is built when you call SetItems. This allows it to quickly find the matches.
  • SearchView also shows items that contain the input text (not just prefixes).
  • The class code can be further customized as needed.
 
Upvote 0

Ricky D

Well-Known Member
Licensed User
Longtime User
Does the searchview work at the bottom of the screen
 
Upvote 0

Star-Dust

Expert
Licensed User
Longtime User
put it in a library as you add new views that you need and grow
 
Upvote 0

Ricky D

Well-Known Member
Licensed User
Longtime User
I can't I've tried. I don't know how the autocompleteedittext shows its list
 
Upvote 0

Star-Dust

Expert
Licensed User
Longtime User
I can't I've tried. I don't know how the autocompleteedittext shows its list
I did not understand the question, but open a new thread if you want help with your view
 
Upvote 0

Ricky D

Well-Known Member
Licensed User
Longtime User
It's ok I'm not putting it in a library I add a textedit and customlistview, use the text changed, show the rebuilt clv when I click on a line it pokes the value to the edittext and closes the clv and the keyboard
 
Upvote 0
Top