码迷,mamicode.com
首页 > 移动开发 > 详细

我的Android最佳实践之—— 解决闪空界面问题

时间:2016-08-12 00:48:29      阅读:425      评论:0      收藏:0      [点我收藏+]

标签:

进入应用时,由于应用的启动Activity都会有默认的theme,所以会跳一下原始界面,才启动我们定义的theme。

修改这个问题的方法,就是给应用启动的Activity设置一个空的theme。如下面的例子:

联系人启动时的Activity为PeopleActivity ,我们就在manifest文件中设置PeopleActivity 的theme为一个空的theme

        <activity android:name=".activities.PeopleActivity"

            android:label="@string/people"

            android:theme="@style/GnEmptyTheme"

            android:uiOptions="splitActionBarWhenNarrow"

            android:clearTaskOnLaunch="true"

            android:launchMode="singleTask"

            android:windowSoftInputMode="adjustPan"

            android:configChanges="orientation"

         >

GnEmptyTheme 就是一个空的theme,里面什么内容页没有,在styles.xml中如下定义:

    <style name="GnEmptyTheme">

    </style>

 

要实现白色主题、黑色主题或者透明主题,就在此Activity的onCreate方法中,使用setTheme设置对应主题即可。

注意setTheme要在super.onCreate(savedInstanceState)之前;

我的Android最佳实践之—— 解决闪空界面问题

标签:

原文地址:http://www.cnblogs.com/scarecrow-blog/p/5763094.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!