When I try to write something in an EditText which is at the bottom of the screen, the soft keyboard hides the EditText. How can I resolve this issue? Below is my xml code.
Here is simple solution for Android EditText issue of hiding behind SoftKeypad. Use the code in AndroidManifest.xml file of the project module.
This code worked for me.
Inside the manifest file in activity tag add this attribute:
android:windowSoftInputMode="adjustResize|stateHidden"
There are more such values for this attribute (android:windowSoftInputMode) which will come as recommendation list. You can check with them also.