guya
guya

Reputation: 5260

Android adjustResize - How to disable the fade effect

When using android:windowSoftInputMode="adjustResize" on a WebView activity its content will resize itself to enable scrolling whenever the user select a text input.

But, every time that the content is resized there is a fade out-in effect.

How can one disable that effect?

Upvotes: 6

Views: 910

Answers (1)

ilyamuromets
ilyamuromets

Reputation: 413

android:windowSoftInputMode="adjustPan"

Maybe it help you.

Upvotes: 1

Related Questions