I am using an AutoCompleteTextview in one bottom sheet. While typing in the AutoCompleteTextview it is not showing complete suggestions because of he keyboard. In Emulater while we are using hardware keyboard it is showing popup. How can we resolve this? This is how it looks.
Asked
Active
Viewed 423 times
0
-
https://stackoverflow.com/questions/16133706/push-listview-when-keyboard-appears-without-adjustpan... This might help you... – Mohd Saquib Jul 18 '17 at 10:39
-
Did you get a solution to this? – Sreekanth Jan 23 '19 at 06:39
1 Answers
0
if you wish to disable keybord, you can do it programatically like this
public void removeKeyboard(EditText e, Context context){
InputMethodManager keyB = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
keyB.hideSoftInputFromWindow(e.getWindowToken(), 0);
}
where EditText e or may be some other view calling for text input

Suhas Wagre
- 100
- 1
- 1
- 9