Reputation: 111
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
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