Android 切換主題風(fēng)格(Theme換膚效果)

參考

1马昙、Android 切換主題以及換膚的實現(xiàn)

截圖

1、默認打開


image.png

2锹锰、點擊【換主題色】


image.png

需知

  • 主題色運用:manifest清單文件中application的屬性之一拳亿,android:theme="@style/AppTheme"
  • 在style.xml中定義不同風(fēng)格的theme(對app而言的style啦)
  • 熟悉?attr/colorPrimary等屬性,在theme中定義好后脱货,布局文件用到這些屬性可以自動替換
  • 如何點擊觸發(fā)后整體畫面生效

代碼

1岛都、清單文件manifest中,app默認使用AppTheme(或者自定義Theme)
<application
        ...
        android:theme="@style/AppTheme">
        ...
</application>
2振峻、style.xml 風(fēng)格:
  • 可定義app的theme臼疫,比方說AppTheme和MyTheme
  • 一般用來定義app內(nèi)各種控件樣式,可重復(fù)使用扣孟,減少layout中的代碼量烫堤,亦可做到后期維護換色等快速修改,不用一一修改。
  • 用到一些自定義屬性
<resources>

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>

        <!--自定義屬性-->
        <item name="myBgColor">@color/wx_bg_gray</item>
        <item name="myButtonHeight">60dp</item>
    </style>


    <style name="MyTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/sysColorPrimary</item>
        <item name="colorPrimaryDark">@color/sysColorPrimaryDark</item>
        <item name="colorAccent">@color/sysColorAccent</item>
        <item name="actionBarSize">80dp</item>
        <item name="colorButtonNormal">@color/wx_green</item>

        <!--自定義屬性-->
        <item name="myBgColor">@color/wx_sunset</item>
        <item name="myButtonHeight">100dp</item>
    </style>

    <!--button style-->
    <style name="MyBtnStyle">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">?attr/myButtonHeight</item>
    </style>

</resources>

3鸽斟、attr.xml 自定義屬性(一般做自定義View的人肯定熟悉):
  • 如果不用可忽略拔创。這里定義后,就可在style.xml中使用這個item屬性了富蓄,并可以寫?attr/myBgColor 和 ?attr/myButtonHeight
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr name="myBgColor" format="color" />
    <attr name="myButtonHeight" format="dimension" />
</resources>
4剩燥、layout.xml 布局文件使用
  • 這里背景使用到:android:background="?attr/myBgColor"
  • 其中一個按鈕用到:style="@style/MyBtnStyle",而這個style里面屬性用到<item name="android:layout_height">?attr/myButtonHeight</item> 立倍。 而且這個myButtonHeight定義到了2個theme里面了C鸷臁!口注!
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:background="?attr/myBgColor">

    <TextView
        android:id="@+id/sample_text"
        android:textSize="25sp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        />

    <EditText
        android:id="@+id/et_1"
        android:textSize="25sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Edit it"/>

    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="CheckBox"
        android:checked="true"/>

    <Button
        android:id="@+id/btn_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="點擊這里"/>

    <Button
        android:id="@+id/btn_2"
        style="@style/MyBtnStyle"
        android:text="換主題色"/>

</LinearLayout>
5变擒、代碼控制切換主題
  • setTheme(),必須在setContentView()寝志,繪畫畫面之前
  • 重啟當(dāng)前畫面:recreate()
  • 當(dāng)前畫面改了娇斑,但是除了棧頂?shù)幕顒赢嬅妫笮麓蜷_畫面可以是新的theme材部,之前在棧里存活的活動畫面還是不能及時換theme毫缆,這個此處不寫了,太多情況了败富,反正可以控制的悔醋。
//切換不同的風(fēng)格,必須在setContentView之前做
        if(useMyTheme){
            setTheme(R.style.MyTheme);
        }else{
            setTheme(R.style.AppTheme);
        }

        setContentView(R.layout.activity_main);


        btn_2 = findViewById(R.id.btn_2);
        btn_2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                useMyTheme = !useMyTheme;
                recreate(); //重啟畫面
            }
        });
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末兽叮,一起剝皮案震驚了整個濱河市芬骄,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌鹦聪,老刑警劉巖账阻,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異泽本,居然都是意外死亡淘太,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進店門规丽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蒲牧,“玉大人,你說我怎么就攤上這事赌莺”溃” “怎么了?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵艘狭,是天一觀的道長挎扰。 經(jīng)常有香客問我翠订,道長,這世上最難降的妖魔是什么遵倦? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任尽超,我火速辦了婚禮,結(jié)果婚禮上梧躺,老公的妹妹穿的比我還像新娘似谁。我一直安慰自己,他們只是感情好掠哥,可當(dāng)我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布棘脐。 她就那樣靜靜地躺著,像睡著了一般龙致。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上顷链,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天目代,我揣著相機與錄音,去河邊找鬼嗤练。 笑死榛了,一個胖子當(dāng)著我的面吹牛停巷,可吹牛的內(nèi)容都是我干的喷好。 我是一名探鬼主播,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼捡絮,長吁一口氣:“原來是場噩夢啊……” “哼革答!你這毒婦竟也來了战坤?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤残拐,失蹤者是張志新(化名)和其女友劉穎途茫,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體溪食,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡囊卜,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了错沃。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片栅组。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖枢析,靈堂內(nèi)的尸體忽然破棺而出玉掸,到底是詐尸還是另有隱情,我是刑警寧澤登疗,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布排截,位于F島的核電站嫌蚤,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏断傲。R本人自食惡果不足惜脱吱,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望认罩。 院中可真熱鬧箱蝠,春花似錦、人聲如沸垦垂。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽劫拗。三九已至间校,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間页慷,已是汗流浹背憔足。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留酒繁,地道東北人滓彰。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像州袒,于是被迫代替她去往敵國和親揭绑。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,700評論 2 345

推薦閱讀更多精彩內(nèi)容