each time i enter the login screen and set focus on either editexts the soft keyboard is shown with a black rectangle on top..i haved tried using android:windowSoftInputMode="adjustPan" in manifest but with no expecting results..
Asked
Active
Viewed 368 times
2
-
Isn't that rectangle used for auto complete/suggestions for words? – Prasanth Louis Oct 10 '15 at 13:06
-
yes...but is there a way to hide it from not showing suggestions? – tsiro Oct 10 '15 at 13:08
2 Answers
3
Try using this in your EditText
android:inputType="textNoSuggestions|textUri"

Prasanth Louis
- 4,658
- 2
- 34
- 47
2
finally...the issue was soft keyboard suggestions..i just set the android:inputType property of each of the editexts to "textNoSuggestions" and the black rectangle is not there anymore...

tsiro
- 2,323
- 3
- 24
- 46
-
I am also facing the same issue. For me, nither android:inputType="textNoSuggestions|textUri" nor android:windowSoftInputMode="adjustPan" is working. So is there any more and perfect suggestion to solve the issue? – Darshan Trivedi Apr 18 '17 at 06:33