标签:
不是原创,是搬运!
搬运出处:
解决Activity启动黑屏及设置android:windowIsTranslucent不兼容activity切换动画问题
Android 避免APP启动闪黑屏(Theme和Style)
之前在做 APP 的时候不太关注这个问题,因为自己在使用其他 APP 的时候也会在应用启动的初始有一个黑屏闪过后才会出现应用的欢迎页。直到最近开发过程中发现自己在欢迎页启动的线程由于请求和处理的数据量过大而,导致欢迎页在出现之前界面上会有一个短暂的白色闪屏停留,当然白色闪屏的停留是因为 application 的主题样式android:theme=@style/AppTheme 使用了 Theme.Light 题导致的,Light 样式的 windowBackground、colorBackground、colorForeground 等属性的值均为 light 也就是白色偏亮,所以才会出现白色闪屏。下面是我的 APP 出现白色闪屏时样式引用的代码:
1 <style name="AppTheme" parent="android:Theme.Light" type="text/css"></style>
简单的修改后,闪屏颜色为黑色,代码如下:
1 <style name="AppTheme" parent="android:style/Theme.Black.NoTitleBar.Fullscreen" type="text/css"></style>
代码修改后引用的样式为黑色主题,但欢迎页仍然会有黑色闪屏短暂的停留。继续进行修改,设置透明属性为 true,代码如下:
<style name="AppTheme" parent="android:style/Theme.Black.NoTitleBar.Fullscreen" type="text/css"><item name=android:windowIsTranslucent>true</item></style>
经过这次的修改之后黑色闪屏现象消失了,最终达到了自己理想的效果。最后,经过查阅资料发现已经有人总结和处理过这类问题了,并且给出了优缺点的分析,我在这里以我的理解对其进行引用。
原来避免黑色闪屏有2种方法,分别为:1.为 Theme 设置背景图;2.为 Theme 设置透明属性。显然我采用的是第二种方式,先分别看看这2种方式所引用的代码:
<!-- 为 Theme 设置背景图 --><style name="AppTheme" parent="android:style/Theme.Black.NoTitleBar.Fullscreen" type="text/css"><item name=android:windowBackground>@drawable/splash_bg</item></style>
<!-- 为 Theme 设置透明属性 --><style name="AppTheme" parent="android:style/Theme.Black.NoTitleBar.Fullscreen" type="text/css"><item name=android:windowIsTranslucent>true</item></style>
上面的2种 Theme 中,为 Theme 设置背景图后程序在启动的时候,会首先显示这张图,避免发生黑屏;为 Theme 设置透明属性,程序启动后不会黑屏而是透明,等到界面初始化完成后才一次性显示出来。下面是两种方式的优缺点:
但是问题有出现了,原先在配置了activity的切换动画效果,设置完android:windowIsTranslucent=true之后切换动画失效了。暂时我也不知道android系统的theme属性之间关系的错综复杂,继承来继承去的。。。为什么会出现这种问题,不过还好无意间找到了解决办法
1 <style name="AppTheme" parent="AppBaseTheme" type="text/css"><!-- <item name=android:windowAnimationStyle>@style/Animation.Activity.Style</item> --> 2 <item name=android:windowAnimationStyle>@style/Animation.Activity.Translucent.Style</item> 3 <item name=android:windowBackground>@android:color/transparent</item> 4 <item name=android:windowIsTranslucent>true</item></style><style name="Animation.Activity.Style" parent="@android:style/Animation.Activity" type="text/css"><item name=android:activityOpenEnterAnimation>@anim/base_slide_right_in</item> 5 <item name=android:activityOpenExitAnimation>@anim/base_stay_orig</item> 6 <item name=android:activityCloseEnterAnimation>@anim/base_stay_orig</item> 7 <item name=android:activityCloseExitAnimation>@anim/base_slide_right_out</item> 8 <item name=android:taskOpenEnterAnimation>@anim/base_slide_right_in</item> 9 <item name=android:taskOpenExitAnimation>@anim/base_stay_orig</item> 10 <item name=android:taskCloseEnterAnimation>@anim/base_stay_orig</item> 11 <item name=android:taskCloseExitAnimation>@anim/base_slide_right_out</item> 12 <item name=android:taskToFrontEnterAnimation>@anim/base_slide_right_in</item> 13 <item name=android:taskToFrontExitAnimation>@anim/base_stay_orig</item> 14 <item name=android:taskToBackEnterAnimation>@anim/base_stay_orig</item> 15 <item name=android:taskToBackExitAnimation>@anim/base_slide_right_out</item></style><style name="Animation.Activity.Translucent.Style" parent="@android:style/Animation.Translucent" type="text/css"><item name=android:windowEnterAnimation>@anim/base_slide_right_in</item> 16 <item name=android:windowExitAnimation>@anim/base_slide_right_out</item></style>
配置style继承的parent为
<style name="Animation.Activity.Translucent.Style" parent="@android:style/Animation.Translucent" type="text/css"><item name=android:windowEnterAnimation>@anim/base_slide_right_in</item> <item name=android:windowExitAnimation>@anim/base_slide_right_out</item></style>
然后让apptheme的android:windowAnimationStyle为上面的style
<style name="AppTheme" parent="AppBaseTheme" type="text/css"><item name=android:windowAnimationStyle>@style/Animation.Activity.Translucent.Style</item> <item name=android:windowBackground>@android:color/transparent</item> <item name=android:windowIsTranslucent>true</item></style>
如果想在所有的activity切换时候使用该theme,可以配置application,也可以单个单个配置在activity里面。当然首页退出的时候可以单独配置MainActivity的退出动画和进入动画.
<style name="Animation.Activity.Translucent.Style.Main" parent="@android:style/Animation.Translucent" type="text/css"><item name=android:windowExitAnimation>@anim/slide_right_out</item></style>
MainActivity的退出和进入动画可以引用系统提供的,但是好像在style里面配置引用不了有些系统的anim,
在文件夹sdkplatformsandroid-20data es下面,activity_open_enter.xml,activity_close_exit.xml可以直接拷贝到项目中,修改
单独写一个进入或者退出,然后其它默认。。。。。。。
多动手,测试,如果有错误的地方麻烦留言一起交流,谢谢
复制去Google翻译翻译结果 机器人:windowAnimationStyle
二.
前几天Boss就反应说,机器每次启动程序都会闪一下黑屏,这个客户不接受。没办法,只能想想怎么解决,最后找到了下面的方法。闪黑屏的原因主要是我们启动Activity的时候,需要跑完onCreate和onResume才会显示界面。也就是说需要处理一些数据后,才会显示。按照这种思路,是不是我把初始化的工作尽量减少就可以避免黑屏?事实是,就算你onCreate啥都不做,仍然会闪一下黑屏,因为初始化解析界面时需要一定时间。下面是解决办法:
(PS:新建的QQ群,有兴趣可以加入一起讨论:Android群:322599434)
1、自定义Theme
//Edited by mythou //http://www.cnblogs.com/mythou/ //1、设置背景图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是把样式设置为透明,程序启动后不会黑屏而是整个透明了,等到界面初始化完才一次性显示出来。下面说说两种方式的优缺点:
2、修改AndroidManifest.xml
为了使上面Theme生效,我们需要设置一些Activity的Theme
//Edited by mythou //http://www.cnblogs.com/mythou/ <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>
3、Theme属性详解
//Edited by mythou
//http://www.cnblogs.com/mythou/
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
//Edited by mythou //http://www.cnblogs.com/mythou/ <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有什么区别?下面列出两者区别:
上面就是通过Theme解决程序启动闪黑屏问题,并且讲解了Theme和Style,通过Theme配置,其实还可以做个欢迎页面。不过我们都希望程序启动速度越快越好,因此还是需要多多优化自己的程序。
标签:
原文地址:http://www.cnblogs.com/404map/p/4892144.html