yosrah
yosrah

Reputation: 111

Soft Keyboard opens then closes in clicking edittext

I have a Recyclerview and one of the items has an edittext , but everytime i clcik on field to start typing the Soft Keyboard opens then closes right away. Has anyone experienced this before ?

Upvotes: 9

Views: 1335

Answers (1)

anakandrat
anakandrat

Reputation: 66

Maybe a little too late but I've just had this issue. I solved by adding android:windowSoftInputMode="adjustPan" to YourActivity in AndroidManifest.xml, like:

<activity android:name=".YourActivity" android:windowSoftInputMode="adjustPan"/>

Upvotes: 5

Related Questions