Android從零開始:建立樣式和主題

七色音階發表於2016-11-11

原文:Android From Scratch: Creating Styles and Themes 

作為一個安卓開發者,我們一般把焦點放在app的功能上。但是僅僅有功能是不夠的。在擁有上百萬app的Google Play上面,介面和功能一樣重要。如果你不相信,可以去看看Google Play Top Charts中的app。

有兩種方法可以改變app的外觀。第一種就是直接在xml中直接修改View的屬性。這種方法只適合於只有幾個View和Activity的簡單app。第二種方法就是建立自定義的樣式和主題。如果你對web開發熟悉,第一種方法類似於使用內聯的CSS樣式,而第二種類似於使用style sheets。

本文,你將學到如何建立自定義的樣式和主題。你還能學到如何使用Android Studio的工具和快捷方式來加快樣式的建立

1. 建立Styles

樣式顯然是應用到UI控制元件上面的。因此,讓我們先建立一個新的空activity並新增兩個View到佈局檔案中。

    <View android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_margin="5dp"
        android:background="#009688"
        android:id="@+id/box1" />
     
    <View android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#00BCD4"
        android:layout_margin="5dp"
        android:id="@+id/box2" />

就如你看到的,屬性layout_width 和 layout_margin是被顯式的定義在每個View中。

要為這個View建立一個新的樣式,右鍵它並選擇Refactor > Extract > Style。

現在你會看到一個對話方塊,裡面可以為樣式設定名字,還可以選擇要包含的屬性。我們命名為MyBox,並選擇除了background之外的所有屬性。

t11 (1).jpg

當你點選ok之後,你會看到第一個View的程式碼已經變了。

    <View android:background="#009688"
        android:id="@+id/box1"
        style="@style/MyBox" />

這個View現在有了一個指向MyBox 樣式的style屬性。你可以開啟res/values/styles.xml來檢視這個樣式的定義

    <style name="MyBox">
        <item name="android:layout_width">100dp</item>
        <item name="android:layout_height">100dp</item>
        <item name="android:layout_margin">5dp</item>
    </style>

一旦一個樣式被定義好,你就可以應用到任何View中。比如,把MyBox應用到第二個View:

    <View android:background="#00BCD4"
        android:id="@+id/box2"
        style="@style/MyBox" />

應用了樣式之後,activity中的兩個View就是這個樣子:

p1.png


2. 繼承 Styles

Android允許你在其他樣式的基礎上建立一個新樣式。換句話說就是允許你繼承style。

繼承一個style有兩種不同的語法。第一種語法被稱為隱式的語法,使用.號作為標記。比如,如果你要建立兩個parent為MyBox,名為 TEAL和CYAN的子樣式:

    <style name="MyBox.TEAL">
        <item name="android:background">#009688</item>
    </style>
     
    <style name="MyBox.CYAN">
        <item name="android:background">#00BCD4</item>
    </style>

你也許能猜到MyBox.TEAL 和 MyBox.CYAN 都具有MyBox的所有屬性,除此之外,它們還有android:background屬性。

第二種語法通常叫做顯式的語法。它使用一個parent屬性,其值就是parent style的名稱。這裡是一個定義名為TealBox的樣式的程式碼片段:

    <style name="TealBox" parent="MyBox">
        <item name="android:background">#009688</item>
    </style>

應用一個派生的style跟應用一個普通的沒有區別。

    <View android:id="@+id/box1"
        style="@style/TealBox" />
     
    <View android:id="@+id/box2"
        style="@style/MyBox.CYAN" />

大多數開發者在繼承自己的style時使用隱式的語法,而繼承系統style時使用顯式的語法。

3. 建立Themes

目前為止,我們只是把style應用到activity裡面的View中。Android還允許你把style應用到整個activity和應用中。當一個樣式被應用到activity或者application中時,就變成了一個一個theme(主題)。

預設,使用最新版本Android Studio建立的所有的app都使用一個叫做AppTheme的主題。AppTheme是AppCompat的子類,一個非常大而廣泛的主題,影響到幾乎所有常用檢視的外觀。

你可以在styles.xml中找到AppTheme的定義:

    <!-- Base application theme. -->
    <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>
    </style>

AppTheme遵循Material Design.因此,為了建立符合Material Design spec的主題,使用AppTheme作為parent是一個不錯的主題。要不然,你也可以直接使用Theme.AppCompat作為parent。

雖然你可以書寫XML程式碼來建立主題-記住,它們只是樣式而已-但是在本教程,我將演示如何使用Android Studio的主題編輯器來做這些複雜的工作。

要開啟主題編輯器,開啟Tools選單選擇Android > Theme Editor

在主題編輯器視窗的右邊,你不僅有修改主題的控制元件,還有建立一個新主題的控制元件。左邊展示主題修改後的預覽結果。

t3.jpg

要建立一個新主題,點選Theme下拉選單,選擇Create New Theme選項。

在彈出的對話方塊中,設定新主題的名稱為MyTheme然後點選ok


t4.jpg


到此時, styles.xml將有一行新程式碼:

<style name="MyTheme" parent="AppTheme" />

讓我們使用主題編輯器來修改MyTheme。為了讓事情變的簡單,本教程只修改colorPrimary, colorPrimaryDark, 以及 colorAccent屬性的值。

要修改colorPrimary的值,點選colorPrimary按鈕。主題編輯器將顯示一個顏色對話方塊。選擇你想要的顏色,但是記住給它一個新名字,如果你忘記了,主題編輯器將覆蓋AppTheme的這個顏色。

t5.png


修改colorPrimaryDark和colorAccent的值是相同的步驟。主題編輯器將自動根據你選擇的colorPrimary推薦合適的bothcolorPrimaryDark和colorAccent。

現在MyTheme的定義看起來就是這樣:

    <style name="MyTheme" parent="AppTheme" >
        <item name="colorPrimary">@color/colorPrimaryMyTheme</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDarkMyTheme</item>
        <item name="colorAccent">@color/colorAccentMyTheme</item>
    </style>

4. 應用Themes

在應用我們建立的主題之前,讓我們先新增幾個常用的控制元件到activity中。這樣更容易看到主題的效果。

下面的程式碼建立了一個普通的Button,一個無邊框的Button,一個彩色的Button,一個Checkbox,一個RadioButton,一個Switch,一個Seekbar,一個TextView以及一個EditText:

    <Button android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="normal"
        android:id="@+id/normal_button" />
     
    <Button android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="borderless"
        android:id="@+id/borderless_button"
        style="@style/Widget.AppCompat.Button.Borderless" />
     
    <Button android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="colored"
        android:id="@+id/colored_button"
        style="@style/Widget.AppCompat.Button.Colored" />
     
    <CheckBox android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="New CheckBox"
        android:id="@+id/checkBox" />
     
    <RadioButton android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="New RadioButton"
        android:id="@+id/radioButton" />
     
    <Switch android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="New Switch"
        android:id="@+id/switchButton" />
     
    <SeekBar android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/seekBar" />
     
    <TextView android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView" />
     
    <EditText android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/editText"
        android:hint="Input" />

當新增了這些View之後,佈局看起來就是這樣的:


p4.png


如果你讀過Material Design spec。我確定你可以看出來此時的activity為colorPrimary 和 colorPrimaryDark使用了靛藍色。而colorAccent使用的是粉色。這些都是Android Studio預設的顏色。你可以在專案的res/values/colors.xml中找到它們的hex值。

要在activity中使用這個主題,開啟專案的manifest檔案,在定義activity的地方新增android:theme屬性,把值設為@style/MyTheme。

    <activity android:name=".MainActivity"
        android:theme="@style/MyTheme">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

同樣,你還可以通過設定application的android:theme屬性把這個主題應用到整個app。

如果你現在看看你的activity,它應該有很大不同。


p5.png


總結

在這個教程中,你學會了如何建立和應用自定義的樣式和主題。你可以把這些知識用來讓你的app變的更好看。不過別太離譜了-現在多數使用者都已經習慣了 Material Design,偏離規則太遠會干擾到他們。

要學習更多關於樣式和主題的知識,我建議你看一遍Styles and Themes Guide


相關文章