Day8 一行代码给我们的APP增添多彩主题

首先看一下多彩主题的设置页面:
然后看一下设置后的不同效果:
最后看一下动态效果:

点此进入目录:[干货] 十天 教你从创意到上线APP

一、变化主题之前的准备

1、用枚举定义主题类型

首先,定义一个枚举用来规定我们的主题都有那些类型:

/**
 * Created by   : WGH.
 */
public enum APPTheme {
    Blue,
    Green,
    Red,
    Grey,
    Black,
    Purple,
    Orange,
    Pink,
    WillFLow
}

2、定义每个主题的颜色值

其次,我们应当在themes当中定义每个主题类型所对应的各个主题颜色,这里我们每个主题分配四种主题颜色,分别是:colorPrimary、colorPrimaryLight、colorPrimaryDark、colorAccent。

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!-- Base application theme. -->
    <style name="WillFlowTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="colorPrimaryLight">@color/colorPrimaryLight</item>
    </style>


    <style name="BlueTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/blue_primary</item>
        <item name="colorPrimaryDark">@color/blue_primary_dark</item>
        <item name="colorAccent">@color/blue_accent</item>
        <item name="colorPrimaryLight">@color/blue_primary_light</item>
    </style>


    <style name="GreenTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/green_primary</item>
        <item name="colorPrimaryDark">@color/green_primary_dark</item>
        <item name="colorAccent">@color/green_accent</item>
        <item name="colorPrimaryLight">@color/green_primary_light</item>
    </style>


    <style name="RedTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/red_primary</item>
        <item name="colorPrimaryDark">@color/red_primary_dark</item>
        <item name="colorAccent">@color/red_accent</item>
        <item name="colorPrimaryLight">@color/red_primary_light</item>
    </style>


    <style name="BlueGreyTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/blue_grey_primary</item>
        <item name="colorPrimaryDark">@color/blue_grey_primary_dark</item>
        <item name="colorAccent">@color/blue_grey_accent</item>
        <item name="colorPrimaryLight">@color/blue_grey_primary_light</item>
    </style>

    <style name="BlackTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/black_primary</item>
        <item name="colorPrimaryDark">@color/black_primary_dark</item>
        <item name="colorAccent">@color/black_accent</item>
        <item name="colorPrimaryLight">@color/black_primary_light</item>
    </style>


    <style name="PurpleTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/purple_primary</item>
        <item name="colorPrimaryDark">@color/purple_primary_dark</item>
        <item name="colorAccent">@color/purple_accent</item>
        <item name="colorPrimaryLight">@color/purple_primary_light</item>
    </style>

    <style name="OrangeTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/orange_primary</item>
        <item name="colorPrimaryDark">@color/orange_primary_dark</item>
        <item name="colorAccent">@color/orange_accent</item>
        <item name="colorPrimaryLight">@color/orange_primary_light</item>
    </style>

    <style name="PinkTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/pink_primary</item>
        <item name="colorPrimaryDark">@color/pink_primary_dark</item>
        <item name="colorAccent">@color/pink_accent</item>
        <item name="colorPrimaryLight">@color/pink_primary_light</item>
    </style>

</resources>

二、设置我们的主题

1、在选中的时候保存

首先,我们需要在用户选择主题的时候进行保存用户的设置:

    @Override
    public void onClick(View v) {
        APPTheme theme;
        switch (v.getId()) {
            case R.id.blue_theme:
                theme = APPTheme.Blue;
                break;
            case R.id.willflow_theme:
                theme = APPTheme.WillFLow;
                break;
            case R.id.green_theme:
                theme = APPTheme.Green;
                break;
            case R.id.red_theme:
                theme = APPTheme.Red;
                break;
            case R.id.grey_theme:
                theme = APPTheme.Grey;
                break;
            case R.id.black_theme:
                theme = APPTheme.Black;
                break;
            case R.id.orange_theme:
                theme = APPTheme.Orange;
                break;
            case R.id.purple_theme:
                theme = APPTheme.Purple;
                break;
            case R.id.pink_theme:
                theme = APPTheme.Pink;
                break;
            default:
                theme = APPTheme.WillFLow;
                break;
        }
        Define.setAppTheme(theme);
        startActivity(new Intent(getContext(), MainActivity.class));
        getActivity().finish();
    }

我们这里在点击监听器里面做相应的逻辑操作。首先根据对应的点击找到相应的主题,其次保存主题到常量里面,然后通过启动Activity来进行主题的生效,最后finish()掉当前的Activity。那么,Activity里面的代码就显得尤为重要了,接下来我们看一下。

2、在启动的时候进行主题设置

我们所有的Activity都是继承自BaseActivity,所以在这里面进行主题设置就完全可以实现想要的功能,主要代码如下:

    protected void onPreCreate() {
        final APPTheme currentTheme = Define.getAppTheme();

        switch (currentTheme) {
            case Blue:
                this.setTheme(R.style.BlueTheme);
                break;
            case Green:
                this.setTheme(R.style.GreenTheme);
                break;
            case Red:
                this.setTheme(R.style.RedTheme);
                break;
            case Grey:
                this.setTheme(R.style.BlueGreyTheme);
                break;
            case Black:
                this.setTheme(R.style.BlackTheme);
                break;
            case Orange:
                this.setTheme(R.style.OrangeTheme);
                break;
            case Purple:
                this.setTheme(R.style.PurpleTheme);
                break;
            case Pink:
                this.setTheme(R.style.PinkTheme);
                break;
            case WillFLow:
                this.setTheme(R.style.WillFlowTheme);
            default:
                this.setTheme(R.style.WillFlowTheme);
                break;
        }
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        onPreCreate();
        super.onCreate(savedInstanceState);
    }

可以看到,我们是在onCreate的父类调用之前首先调用了onPreCreate(),这就意味着我们是在所有的Activity开启之前就进行了主题的设置。而设置的方法就是:通过获取之前保存在常量里的AppTheme枚举值来进行主题的选择和设置,方法是:this.setTheme(R.style.XXXTheme)。其中的就对应着我们之前文件中定义的主题颜色集合。

至此为止,我们就为APP做出了良好的更换主题的工作。如果你有更好的颜色想要设置,只要增加分类即可,这很简单。

联系方式:

简书:WillFlow
GitHub:爱阅

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容