欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

完美解决Android App启动页有白屏闪过的问题

时间:2021-03-11 10:05:48|栏目:Android代码|点击:

应用启动的时候有短暂的白屏,如图:

可以通过设置theme的方式来解决

 <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
  </style>

  <style name="AppTheme.Transparent">
    <item name="android:windowIsTranslucent">true</item>
    <item name="windowNoTitle">true</item>
  </style>

在AndroidManifest中使用 AppTheme.Transparent

<activity android:name=".MainActivity"
      android:theme="@style/AppTheme.Transparent"
      >
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>

然后重新运行程序安装。

补充知识:解决Android启动页白屏及图片拉伸的问题

【Android小知识】

为了解决Android冷启动延迟、白屏等问题,往往会将启动图片设置到styles.xml文件中去,但是直接在style文件中引用图片的话很大可能会造成图片拉伸和变形,所以建议将图片配置到xml中去,最后在style文件中引入xml就可以了,如下代码所示:

style.xml

  <style name="SplashActivityThemes" parent="Theme.AppCompat.NoActionBar">
    <item name="android:windowBackground">@drawable/bg_splash</item>
    <item name="android:windowFullscreen">true</item>
  </style>

bg_splash.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
  <item>
    <shape>
      <solid android:color="#FFFFFF"/>
    </shape>
  </item>
  <item
    android:bottom="50dp">
    <bitmap
      android:gravity="bottom|center_horizontal"
      android:src="@mipmap/icon_welcome"/>
  </item>
</layer-list>

上一篇:Android ADB常用命令总结

栏    目:Android代码

下一篇:ListView的View回收引起的checkbox状态改变监听等问题解决方案

本文标题:完美解决Android App启动页有白屏闪过的问题

本文地址:http://www.codeinn.net/misctech/78415.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有