android – Phonegap splashscreen方向
作者:互联网
为手机屏幕应用程序设置启动画面时,即使我在中心制作了带有徽标的大图片,图片也会在整个屏幕上拉伸.理想情况下,我希望图片只是坐在中心,背景为黑色或白色.如何配置启动画面的行为?
解决方法:
有一个更好的解决方案:只需将以下splash.xml放在res / drawable中(修改android:src属性)并在setIntegerProperty()调用中更改对R.drawable.splash的引用.
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/splashImage"
android:gravity="center_horizontal|center_vertical" />
有关设置的更详细说明,请参阅我的Blog.
标签:android,splash-screen,cordova 来源: https://codeday.me/bug/20190713/1451344.html