简体   繁体   English

在电容android中,如何在屏幕底部移动闪屏微调器

[英]in capacitor android, how can I move splash screen spinner at the botton of the screen

how can I move ionic-angular capacitor splash screen spinner at the bottom of the of the screen for android我怎样才能移动 android 屏幕底部的离子角电容器闪屏微调器

"plugins": {
"SplashScreen": {
  "launchShowDuration": 7000,
  "showSpinner": true,
}

Here is the documentation这是文档

capacitor doc电容器文档

Full Screen & Immersive (Android only) You can enable splashFullScreen to hide status bar, or splashImmersive to hide both status bar and software navigation buttons.全屏和沉浸式(仅限 Android)您可以启用 splashFullScreen 以隐藏状态栏,或启用 splashImmersive 以隐藏状态栏和软件导航按钮。 If both options are enabled splashImmersive takes priority, as it also fulfils splashFullScreen functionality.如果启用了这两个选项, splashImmersive 优先,因为它也实现了 splashFullScreen 功能。

Configuration These config parameters are available in capacitor.config.json:配置这些配置参数在capacitor.config.json 中可用:

{
  "plugins": {
    "SplashScreen": {
      "launchShowDuration": 3000,
      "launchAutoHide": true,
      "backgroundColor": "#ffffffff",
      "androidSplashResourceName": "splash",
      "androidScaleType": "CENTER_CROP",
      "androidSpinnerStyle": "large",
      "iosSpinnerStyle": "small",
      "spinnerColor": "#999999",
      "showSpinner": true,
      "splashFullScreen": true,
      "splashImmersive": true
    }
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM