欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 避免APP启动闪黑屏的解决办法(Theme和Style)

程序员文章站 2023-01-01 23:39:39
前几天boss就反应说,机器每次启动程序都会闪一下黑屏,这个客户不接受。没办法,只能想想怎么解决,最后找到了下面的方法。闪黑屏的原因主要是我们启动activity的时候,需...

前几天boss就反应说,机器每次启动程序都会闪一下黑屏,这个客户不接受。没办法,只能想想怎么解决,最后找到了下面的方法。闪黑屏的原因主要是我们启动activity的时候,需要跑完oncreate和onresume才会显示界面。也就是说需要处理一些数据后,才会显示。按照这种思路,是不是我把初始化的工作尽量减少就可以避免黑屏?事实是,就算你oncreate啥都不做,仍然会闪一下黑屏,因为初始化解析界面时需要一定时间。下面是解决办法:
1、自定义theme

复制代码 代码如下:

设置背景图theme
<style name="theme.appstartload" parent="android:theme"> 
    <item name="android:windowbackground">@drawable/ipod_bg</item> 
    <item name="android:windownotitle">true</item> 
</style>
//2、设置透明theme
<style name="theme.appstartloadtranslucent" parent="android:theme"> 
    <item name="android:windowistranslucent">true</item>
    <item name="android:windownotitle">true</item> 
</style>

上面我定义了两种theme,第一种theme就是设置一张背景图。当程序启动时,首先显示这张背景图,避免出现黑屏。第二种theme是把样式设置为透明,程序启动后不会黑屏而是整个透明了,等到界面初始化完才一次性显示出来。下面说说两种方式的优缺点:
•theme1 程序启动快,界面先显示背景图,然后再刷新其他界面控件。给人刷新不同步感觉。
•theme2 给人程序启动慢感觉,界面一次性刷出来,刷新同步。
 
2、修改androidmanifest.xml
为了使上面theme生效,我们需要设置一些activity的theme
复制代码 代码如下:

<application
    android:allowbackup="true"
    android:icon="@drawable/ipod_icon"
    android:label="@string/app_name"
    android:launchmode="singletask">
<!-- ipod主界面 -->
<activity
    android:name="com.apical.apicalipod.ipodmainactivity"
  <!-- 使用上面定义的样式 mythou-->
    android:theme="@style/theme.appstartload"
    android:label="@string/app_name" >
    <intent-filter>
    <action android:name="android.intent.action.main" />
    <category android:name="android.intent.category.launcher" />
    </intent-filter>
</activity>
//......
</application>

•可以在activity里面增加上面自定义的样式。另外在application里面增加也是可以的,而且是全局效果。
•自定义theme放在 /res/values/styles.xml 里面。如果没有这个文件,自己添加一个即可。
•如果存在多个activity切换,中间也可能会存在短暂黑屏问题。原因也是activity启动的时候需要初始化加载数据,如果想避免这种情况,可以在你切换的activity里面增加上面的样式。
•上面两种样式都可以避免黑屏。可以实际测试一下你的程序选择一种效果。
•这个只是把黑屏避免了,但是如果你程序初始化启动慢,还是会给人程序启动慢的感觉。需要自行优化程序初始化过程。
 
3、theme属性详解
复制代码 代码如下:

android:theme="@android:style/theme.dialog" //activity显示为对话框模式
android:theme="@android:style/theme.notitlebar" //不显示应用程序标题栏
android:theme="@android:style/theme.notitlebar.fullscreen" //不显示应用程序标题栏,并全屏
android:theme="theme.light " //背景为白色
android:theme="theme.light.notitlebar" //白色背景并无标题栏
android:theme="theme.light.notitlebar.fullscreen" //白色背景,无标题栏,全屏
android:theme="theme.black" //背景黑色
android:theme="theme.black.notitlebar" //黑色背景并无标题栏
android:theme="theme.black.notitlebar.fullscreen" //黑色背景,无标题栏,全屏
android:theme="theme.wallpaper" //用系统桌面为应用程序背景
android:theme="theme.wallpaper.notitlebar" //用系统桌面为应用程序背景,且无标题栏
android:theme="theme.wallpaper.notitlebar.fullscreen" //用系统桌面为应用程序背景,无标题栏,全屏
android:theme="theme.translucent" //透明背景
android:theme="theme.translucent.notitlebar" //透明背景并无标题
android:theme="theme.translucent.notitlebar.fullscreen" //透明背景并无标题,全屏
android:theme="theme.panel " //面板风格显示
android:theme="theme.light.panel" //平板风格显示

4、theme和style
android里面除了theme外还有style,例如下面是launcher里面配置workspace的一个style
复制代码 代码如下:

 <style name="workspaceicon">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">match_parent</item>
        <item name="android:layout_gravity">center</item>
        <item name="android:gravity">center_horizontal</item>
        <item name="android:singleline">true</item>
        <item name="android:ellipsize">marquee</item>
        <item name="android:textsize">12sp</item>
        <item name="android:textcolor">#fff</item>
        <item name="android:shadowradius">2.0</item>
        <item name="android:shadowcolor">#b0000000</item>
    </style>

style可以理解为一组属性集合,方便不同的view设置使用,我们在view里面使用style的时候,跟使用theme是一样的应用方法。那么style和theme有什么区别?

下面列出两者区别:
•样式用在单独的view,如:button、textview等

•主题通过androidmanifest.xml中的<application>和<activity>用在整个应用或者某个 activity,主题对整个应用或某个activity存在全局性影响。

•如果一个应用使用了主题,同时应用下的view也使用了样式,那么当主题与样式属性发生冲突时,样式的优先级高于主题。

上面就是通过theme解决程序启动闪黑屏问题,并且讲解了theme和style,通过theme配置,其实还可以做个欢迎页面。不过我们都希望程序启动速度越快越好,因此还是需要多多优化自己的程序。