只要修改style.xml,就可以完美解决。
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> ...... <item name="android:windowIsTranslucent">true</item> <item name="android:windowNoTitle">true</item> </style>
加入了两个属性,windowIsTranslucent和windowNoTitle,将这两个属性都设置成true,让程序在初始化的时候窗口是透明的,初始化结束后程序主界面才会显示出来,也就完全看不到白屏界面。