而不是位图 - 我可以设置启动画面的背景颜色
<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>
答案 0 :(得分:1)
是的,你可以像在原生环境中那样做。
<强> 应用程序/ App_Resources / Android的/可绘-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>
并且不要忘记'注册'你的颜色
<强> 应用程序/ App_Resources /的Android /值/ colors.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="my_color">#00ff00</color>
</resources>