user448250
user448250

Reputation: 1624

Flickering in Android while keyboard dismissal?

enter image description hereI am having issue with Android Tablet. I have created a runtime views as shown in Attachment(tab_before_error.png), when user clicks on Edittext then keyboard appears, after typing something I am making some operations in aftertextchanged callback. When I dismiss the Keyboard, there is Flickering as shown in attachment(tab_error.png). What's the issue, why the system not able to render the UI immediately once the keyboard dismissal.

Upvotes: 2

Views: 1073

Answers (1)

mithileshssingh
mithileshssingh

Reputation: 275

try to put the following line in ur activity tag in manifest..

              android:windowSoftInputMode="stateHidden|adjustNothing"

Upvotes: 3

Related Questions