Nativescript 启动文件背景色
Nativescript splash file background color
而不是位图 - 我可以设置初始屏幕的背景颜色吗
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:gravity="fill">
<item>
<bitmap android:gravity="fill" android:src="@drawable/background" />
</item>
<item>
<bitmap android:gravity="center" android:src="@drawable/logo" />
</item>
</layer-list>
是的,你可以像在本地环境中那样做。
app/App_Resources/Android/drawable-nodpi/splash_screen.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:gravity="fill">
<item android:drawable="@color/my_color"/>
</layer-list>
别忘了'register'你的颜色
app/App_Resources/Android/values/colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="my_color">#00ff00</color>
</resources>
而不是位图 - 我可以设置初始屏幕的背景颜色吗
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:gravity="fill">
<item>
<bitmap android:gravity="fill" android:src="@drawable/background" />
</item>
<item>
<bitmap android:gravity="center" android:src="@drawable/logo" />
</item>
</layer-list>
是的,你可以像在本地环境中那样做。
app/App_Resources/Android/drawable-nodpi/splash_screen.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:gravity="fill">
<item android:drawable="@color/my_color"/>
</layer-list>
别忘了'register'你的颜色
app/App_Resources/Android/values/colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="my_color">#00ff00</color>
</resources>