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


    进入应用时,由于应用的启动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)之前;

  • 相关阅读:
    时间
    matplotlib中文乱码
    文件路径
    mysql按照秒、分钟、小时、天、月、年统计数量
    python运行jmx文件
    查看Kafka group中的历史消息
    Django 工作流程
    python PyQt5 制作简单计算器
    python 根据链家爬取的信息生成云词
    python 爬取链家二手房信息
  • 原文地址:https://www.cnblogs.com/scarecrow-blog/p/5763094.html
Copyright © 2020-2023  润新知