键盘消失后的Android白色背景

Ste*_*ieB 20 android angularjs ionic-framework

来自不同用户的问题视频但是相同

http://imgur.com/ca2cNZv

我有一个背景图像设置如下:

  .pane {
  background-image:  url("../img/inner-banner-bg.jpg");
  background-repeat: repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
Run Code Online (Sandbox Code Playgroud)

在我的config.xml中

<preference name="Fullscreen" value="false"/>
Run Code Online (Sandbox Code Playgroud)

现在我遇到的问题是当键盘完成/搜索后键盘消失时,它会在键盘覆盖的空间过渡期间留下类似0.5的白色背景,看起来有点糟糕.

当键盘关闭时,它不会收缩但会留下白色间隙.如何让键盘不缩小背景幕后的视图?

当我设置

<preference name="Fullscreen" value="true"/>
Run Code Online (Sandbox Code Playgroud)

它不会发生.我也在使用Ionic插件键盘.

无论如何,我可以使键盘褪色的过渡不显示白色背景?

编辑:这是我的android设置

<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
            <intent-filter android:label="@string/launcher_name">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
Run Code Online (Sandbox Code Playgroud)

和我的配置设置

  <access launch-external="yes" origin="geo:*"/>
  <allow-intent href="geo:*"/>
  <preference name="webviewbounce" value="false"/>
  <preference name="UIWebViewBounce" value="false"/>
  <preference name="DisallowOverscroll" value="true"/>
  <preference name="android-minSdkVersion" value="16"/>
  <preference name="BackupWebStorage" value="none"/>
  <preference name="SplashScreen" value="screen"/>
  <preference name="SplashScreenDelay" value="4000"/>
  <preference name="FadeSplashScreen" value="false"/>
  <preference name="ShowSplashScreenSpinner" value="true"/>
  <preference name="KeyboardShrinksView" value="false"/>
Run Code Online (Sandbox Code Playgroud)

并在Package.json中

  "dependencies": {
    "gulp": "^3.5.6",
    "gulp-sass": "^2.0.4",
    "gulp-concat": "^2.2.0",
    "gulp-minify-css": "^0.3.0",
    "gulp-rename": "^1.2.0"
  },
  "devDependencies": {
    "bower": "^1.3.3",
    "gulp-util": "^2.2.14",
    "shelljs": "^0.3.0"
  },
  "cordovaPlugins": [
    "cordova-plugin-device",
    "cordova-plugin-console",
    "cordova-plugin-whitelist",
    "cordova-plugin-splashscreen",
    "cordova-plugin-statusbar",
    "cordova-plugin-geolocation",
    "cordova-plugin-network-information",
    "ionic-plugin-keyboard"
  ],
  "cordovaPlatforms": [
    "android",
    "ios"
  ]
Run Code Online (Sandbox Code Playgroud)

在我的网页视图中,我使用离子视图和离子内容

<ion-view>
    <ion-content class="has-header has-tabs">
Run Code Online (Sandbox Code Playgroud)

bea*_*ver 10

在AndroidManifest.xml文件中尝试将windowSoftInputMode属性设置为adjustNothing:

android:windowSoftInputMode="adjustNothing"
Run Code Online (Sandbox Code Playgroud)

它适用于我的Ionic项目,当软键盘打开时,无法调整Cordova webview的大小.

  • 该死的,看不到白色背景和闪烁真是太好了,但事实上没有调整大小,这意味着我有时看不到弹出窗口上的按钮,所以不是很好的用户体验。 (2认同)