Skip to content Skip to sidebar Skip to footer

Black Rectangle On Top Of Soft Keyboard When Either Editexts Gain Focus

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='adju

Solution 1:

Try using this in your EditText

android:inputType="textNoSuggestions|textUri"

Solution 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...

Post a Comment for "Black Rectangle On Top Of Soft Keyboard When Either Editexts Gain Focus"