DSCKGEC / Resumie

Resumie is an android CV & Portfolio app. Now carry your resume with you wherever you go!
MIT License
11 stars 13 forks source link

Disable keyboard pop-up for each Fragment #13

Closed adrishyantee closed 3 years ago

adrishyantee commented 3 years ago

The first view for the fragments is an EditText and so we need to hide the keyboard popup for it.

How to disable the keypad popup when on edit text?

The issue is quite simple and easy but must be applied to all the required fragments.

mahmood199 commented 3 years ago

Would like to work on this.

adrishyantee commented 3 years ago

So, I check a few other devices as well, and some of them have this keyboard pop-up enabled. I was thinking of writing this one line in the Manifest file:

  <activity android:name=".MainActivity" 
             android:windowSoftInputMode="stateHidden" />

Can you add this line and check if that is working on other devices smoothly or not?