Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 959
guya Avatar asked Dec 18 '12 23:12

guya


1 Answers

android:windowSoftInputMode="adjustPan"

Maybe it help you.

like image 108
ilyamuromets Avatar answered Oct 22 '22 04:10

ilyamuromets