Reputation: 1833
I am facing a strange problem when keyboarad shown in fragment it white overlay view shown above the layout and disapper when keyboard hide
this picture when keyboard hide
this picture when keyboard shown
Upvotes: 0
Views: 157
Reputation: 1660
I think its not hard problem
Then
In AndroidManifest.xml
file try to set windowSoftInputMode
attribute to adjustNothing
.
Like this :
android:windowSoftInputMode="adjustNothing"
I hope that it works.
Upvotes: 1