android app開發用好styles.xml==>方便,簡潔明瞭,再也不用暈冗繁程式碼啦

shengDay發表於2016-04-25

androidstyles.xml是android格式的編輯利器


  1.  android的styles.xml檔案
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="button_style">
    <item name="android:layout_width">"wrap_content"</item>
    <item name="android:layout_height">"wrap_content"</item>
    <item name="android:text">"Welcome you"</item>
</style>
</resources>

2. 佈局檔案activtity_main.xml擷取

  <Button
        android:id="@+id/button1"
        style="@style/button_style"/>
    <Button
        android:id="@+id/button2"
        style="@style/button_style"/>
    <Button
        android:id="@+id/button3"
       style="@style/button_style"/>

3不用styles.xml檔案時(1+2)等價3需要的佈局檔案

activtity_main.xml

擷取


<Button

        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />
    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

 <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

4佈局檔案的相同style程式碼越多,越凸顯styles.xml的輕便


相關文章