Is there a way to get an array of the suggestions strings which are shown when you typing in EditText? The problem is I have an EditText and in case of user use "Show Suggestions" option the result of the string from this EditText is different in case of user pressed, lets say UI button (this is a Button from the layout), and a return button at the soft keyboard. In first case user gets an exact string but in second - it gets corrected (suggested) string even user do NOT select this suggestion. How to solve this problem? How to get from EditText "suggested" string? Do I need to implement my own IME?
Asked
Active
Viewed 280 times
1
HitOdessit
- 7,162
- 4
- 34
- 59
Yuriy Chernyshov
- 496
- 6
- 12
-
Here is an example: http://gyazo.com/74c1c69096c87dbc1533bf298b62904f If user tap on "Send" button - it will send "Tert" but is user tap " – Yuriy Chernyshov Jan 18 '12 at 14:57
2 Answers
2
Maybe this can help you ? Hello Auto Complete
Or if you want to write one on your own.. Writing your own autocompleteview
Ceetn
- 2,698
- 2
- 24
- 28
0
Are you trying to disable suggestions or to modify them? If you want to disable them completely, check this out: How to disable displaying "suggestions" on the Soft Keyboard