Android Keyboard hides EditText

前端 未结 8 542
独厮守ぢ
独厮守ぢ 2020-11-29 04:58

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.

8条回答
  •  情话喂你
    2020-11-29 05:21

    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.

提交回复
热议问题