Soft Keyboard opens then closes in clicking edittext
android, android-edittext, android-recyclerview
Solution
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"/>
Problem
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 ?