zoukankan      html  css  js  c++  java
  • 夜间模式的切换

    //黑夜白天模式切换的配置
    attrs
    <resources>

        <attr name="bjcolor" format="reference|color"></attr>
        <attr name="txcolor" format="reference|color"></attr>

    </resources>

    style
    <resources xmlns:android="http://schemas.android.com/apk/res/android">

        <style name="fault" parent="@android:style/Theme.Black.NoTitleBar">
            <item name="@attr/bjcolor"> @android:color/white</item>
            <item name="@attr/txcolor">@android:color/black</item>
        </style>

        <style name="Night" parent="@android:style/Theme.Black.NoTitleBar">
            <item name="@attr/bjcolor">@android:color/darker_gray</item>
            <item name="@attr/txcolor">@android:color/white</item>
        </style>

    </resources>

    //代码的是实现
    if (blFlag) {
                this.setTheme(R.style.Night);
                blFlag = false;
                editor.putBoolean("b", false);
            } else {
                this.setTheme(R.style.fault);
                blFlag = true;
                editor.putBoolean("b", true);
            }


  • 相关阅读:
    51nod1042
    51nod1009
    分库分表Mycat总结
    RocketMQ事务消息实现分析
    RocketMQ消费模式
    mysql中的隐式转换总结
    EXPLAIN用法和结果分析
    MySQL日期时间处理函数总结
    RocketMQ在windows环境下的安装
    深入分析Synchronized原理
  • 原文地址:https://www.cnblogs.com/weiyangge/p/5310574.html
Copyright © 2011-2022 走看看