Android White Background when keyboard fades away

Hey,

I have a background image set as follows :

 .pane, .view {
  background: transparent;
}

.view-container {
  background-image:  url("../img/inner-banner-bg.jpg");
  background-repeat: repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}`

And in my config.xml

<preference name="Fullscreen" value="false"/>

Now the problem I am having is when the keyboard fades away after I hit done / search, it leaves a white background for like 0.5 during the transition for the space the keyboard covered and it looks a bit bad. When I set

<preference name="Fullscreen" value="true"/>

It doesnt happen. I am also using the Ionic Plugin Keyboard.

Anyway I can make the transition of the keyboard fading not display the white background ?

Got this solved in ionic 4 by using NativePageTransitions

1 Like