根据https://stackoverflow.com/a/23207466/5093308,theme.xml中的android:windowBackground,需要用drawable,而不是color,否则某些机型会不生效,如
<!-- theme.xml -->
<item name="android:windowBackground">@drawable/global_bg</item>
<!-- global_bg.xml -->
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#FFFFFF"/>
</shape>
网友评论