Android 之 style

  目录

    一、概述
    二、两种继承方式
    三、在layout中的使用

一.概述

    通过继承机制,可以利用已有的style来定义新的style。所定义的新的style型不仅拥有新定义的item,而且还同时拥有旧的item。我们称已存在的用来派生新的style为父style。由新定义的style,又称为子style。    比如:

   

[html] view plain copy
  1. <style name="pickprof_guide_text">  
  2.         <item name="android:textSize">16.0sp</item>  
  3.         <item name="android:textColor">#ff333333</item>  
  4. </style>  
  5. <style name="pickprof_guide_text_small" parent="@style/pickprof_guide_text">  
  6.         <item name="android:textSize">13.0sp</item>         
  7. </style>  

二、两种继承方式

    方式一:通过parent属性用来继承android已经定义好的style。例如:      

[html] view plain copy
  1. <style name="XDialog" parent="android:Theme.Dialog">  
  2.        <item name="android:windowBackground">@drawable/pop_frame</item>  
  3. </style>             
  方式二: 如果要继承自定义的style,不需要通过parent属性,只要style的name以需要继承的style的name开始后跟新的style的name,中间用“.”隔开。注意: 这种方式只适用与自定义的style继承 。例如:   
[html] view plain copy
  1. <!-- Base style for animations.  This style specifies no animations. -->  
  2.    <style name="Animation" />  
  3. <!-- Standard animations for a non-full-screen window or activity. -->  
  4.    <style name="Animation.Dialog">  
  5.        <item name="windowEnterAnimation">@anim/dialog_enter</item>  
  6.        <item name="windowExitAnimation">@anim/dialog_exit</item>  
  7.    </style> 
三、在layout中的使用

<RelativeLayout 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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <include layout="@layout/title_bar" />

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="92dp"
        android:orientation="vertical" >

        <Button
            style ="@style/Animation.Dialog"
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </LinearLayout>



</RelativeLayout>

参考自博文: 点击打开链接

你可能感兴趣的:(android)