码迷,mamicode.com
首页 > 其他好文 > 详细

夜间模式的切换

时间:2016-03-23 13:11:36      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

//黑夜白天模式切换的配置
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);
        }


夜间模式的切换

标签:

原文地址:http://www.cnblogs.com/weiyangge/p/5310574.html

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