Android 秒开,对黑白屏说 再见bye bye

对于Android启动应用时候黑白屏也是困扰了好久,现在终于得到了解决。

首先先感谢:带你重新认识:Android Splash页秒开 Activity白屏 Activity黑屏  的详细分析。

然后也感谢:Android 必知必会 - Android Splash 页秒开之细节处理 的补充。


#问题的产生原因呢:

绘制整个窗口需要按顺序执行以下几个步骤: 
1. 绘制背景。 
2. 绘制View本身的内容。 
3. 绘制子View。 
4. 绘制修饰内容(例如滚动条)。

这里是主要的四步,还有些其他对于今天内容不太重要省去没写。

我们正常开发中会在ActivityonCreate()方法中调用setContentView(View)设置该Activity的显示布局,那么问题就来了,既然我们设置了布局,为什么启动的时候还会白屏或者黑屏而不是显示我set的布局呢?下面就带领大家一起来剖析一下原因。

当打开一个Activity时,如果这个Activity所属Application还没有在运行,系统会为这个Activity的创建一个进程(每开启一个进程都会有一个Application,所以ApplicationonCreate()可能会被调用多次),但进程的创建与初始化都需要时间,在这个动作完成之前,如果初始化的时间过长,屏幕上可能没有任何动静,用户会以为没有点到按钮。所以既不能停在原来的地方又没到显示新的界面,怎么办呢?这就有了StartingWindow(也称之为PreviewWindow)的出现,这样看起来就像Activity已经启动起来了,只是数据内容还没有初始化好。

StartingWindow一般出现在应用程序进程创建并初始化成功前,所以它是个临时窗口,对应的WindowTypeTYPE_APPLICATION_STARTING。目的是告诉用户,系统已经接受到操作,正在响应,在程序初始化完成后实现目的UI,同时移除这个窗口。

这个StartingWindow就是我们要讨论的白屏和黑屏的“元凶”,一般情况下我们会对ApplicationActivity设置Theme,系统会根据设置的Theme初始化StartingWindowWindow布局的顶层是DecorViewStartingWindow显示一个空DecorView,但是会给这个DecorView应用这个Activity指定的Theme,如果这个Activity没有指定Theme就用Application的(Application系统要求必须设置Theme)。

Theme中可以指定窗口的背景,ActivityICON,APP整体文字颜色等,如果说没有指定任何属性,就会用默认的属性,也就是上文中提到的空DecorView,所以我们的白屏和黑屏和空DecorView息息相关,我们给APP设置的Style就决定了是白屏还是黑屏。

1、如果选择了Black的系列的主题那么Activity跳转的时候就是黑屏:

<code class="language-xml hljs  has-numbering" style="box-sizing: border-box; font-family: 'Source Code Pro', monospace;font-size:undefined; padding: 0px; color: inherit; border-radius: 0px; white-space: pre; display: block; word-wrap: normal; background: transparent;">@android:style/Theme.Black"</code><ul class="pre-numbering" style="box-sizing: border-box; margin: 0px; position: absolute; width: 50px; top: 0px; left: 0px; padding: 6px 0px 40px; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(221, 221, 221); list-style: none; text-align: right; background-color: rgb(238, 238, 238);"><li style="box-sizing: border-box; padding: 0px 5px;">1</li></ul>

2、如果选择了Light的系列的主题那么Activity跳转的时候就是白屏:

<code class="language-xml hljs  has-numbering" style="box-sizing: border-box; font-family: 'Source Code Pro', monospace;font-size:undefined; padding: 0px; color: inherit; border-radius: 0px; white-space: pre; display: block; word-wrap: normal; background: transparent;">@android:style/Theme.Light"</code>
以上摘自第一篇博客。


#解决方法

两篇博客里面都给出了解决办法大体是差不多的(个人更倾向于下面这一种);

##延迟启动添加淡出的过场动画

<span style="color: rgb(102, 102, 102); font-family: -apple-system, 'PingFang SC', 'Hiragino Sans GB', Arial, 'Microsoft YaHei', 'Helvetica Neue', sans-serif;font-size:14px; line-height: 27.2px; text-align: justify;">SplashActivity</span>
 <span style="font-size:14px;">@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                Intent starter = new Intent(SplashActivity.this, xxxActivity.class);
                startActivity(starter);
                finish();
                overridePendingTransition(R.anim.stand,R.anim.splash);
            }
        },500);

    }</span>
<span style="color: rgb(102, 102, 102); font-family: -apple-system, 'PingFang SC', 'Hiragino Sans GB', Arial, 'Microsoft YaHei', 'Helvetica Neue', sans-serif; line-height: 27.2px; text-align: justify;"><span style="font-size:18px;">stand.xml</span></span><span style="font-size:14px;">
</span>
<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">
    <translate
        android:duration="200"
        android:fromXDelta="0%p"
        android:toXDelta="0%p"
        />
</set></span>
<span style="color: rgb(102, 102, 102); font-family: -apple-system, 'PingFang SC', 'Hiragino Sans GB', Arial, 'Microsoft YaHei', 'Helvetica Neue', sans-serif; line-height: 27.2px; text-align: justify;"><span style="font-size:18px;">splash.xml</span></span><span style="font-size:14px;">
</span>
<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <alpha
        android:fromAlpha="1.0"
        android:toAlpha="0.0"
        android:duration="200"
        />
</set></span>


在此也只是做一个记录,也希望更多的Android开发者看见和学习。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值