Skip to content Skip to sidebar Skip to footer

Recyclerview With Edittext: Worng Keyboard For A Split Second

So I have this wierd behaviour with my EditText in my RecyclerView. When I click on a Button, located in one Item of this RecyclerView, I get the Text from the EditText, store it

Solution 1:

Try putting the following into your AndroidManifest.xml under the corresponding <activity> block:

android:windowSoftInputMode="adjustPan"

Solution found from here in the comments.

Post a Comment for "Recyclerview With Edittext: Worng Keyboard For A Split Second"