网上的解决办法都是把Activity的window背景设置为一张图片,但是这个问题是在图片之后,Flutter内容出现之前出现的一帧黑屏。 直接放解决办法
<style name="LaunchTheme" parent="@android:style/Theme.Translucent">
<!-- Show a splash screen on the activity. Automatically removed when
Flutter draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
<item name="android:windowTitleSize">0.1dp</item>
</style>
即不使用NoTitle的主题,设置title高度为0.1dp,为0的话还是会出现。
网友评论