declare-styleable

转自http://www.cnblogs.com/jisheng/archive/2013/01/10/2854891.html

在使用过程中,

复制代码
1 TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.ContactListItemView);
2 mPreferredHeight = a.getDimensionPixelSize(
3 R.styleable.ContactListItemView_list_item_height, 0);
4 mActivatedBackgroundDrawable = a.getDrawable(
5 R.styleable.ContactListItemView_activated_background);
6 mHorizontalDividerDrawable = a.getDrawable(
7 R.styleable.ContactListItemView_list_item_divider);
复制代码

 

发现mHorizontalDividerDrawable一直为空。

查找到在attrs.xml里定义了

复制代码
<declare-styleable name="ContactListItemView">

....

<attr name="list_item_divider" format="reference"/>

...
</declare-styleable>
复制代码

最后发现该引用出现在ActivityTheme里面

复制代码
<style name="PeopleTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar">

.......
<item name="list_item_divider">?android:attr/listDivider</item>

.......
</style>
复制代码

 

相关资料如下

做Android布局是件很享受的事,这得益于他良好的xml方式。使用xml可以快速有效的为软件定义界面。可是有时候我们总感觉官方定义的一些基本组件不够用,自定义组件就不可避免了。那么如何才能做到像官方提供的那些组件一样用xml来定义他的属性呢?现在我们就来讨论一下他的用法。

一、在res/values文件下定义一个attrs.xml文件,代码如下:

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
    <declare-styleable name="ToolBar"> 
        <attr name="buttonNum" format="integer"/> 
        <attr name="itemBackground" format="reference|color"/> 
    </declare-styleable> 
</resources>

二、在布局xml中如下使用该属性:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:toolbar="http://schemas.android.com/apk/res/cn.zzm.toolbar" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
    <cn.zzm.toolbar.ToolBar android:id="@+id/gridview_toolbar" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_alignParentBottom="true" 
        android:background="@drawable/control_bar" 
        android:gravity="center" 
        toolbar:buttonNum="5" 
        toolbar:itemBackground="@drawable/control_bar_item_bg"/> 
</RelativeLayout>

三、在自定义组件中,可以如下获得xml中定义的值:

TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.ToolBar); 
buttonNum = a.getInt(R.styleable.ToolBar_buttonNum, 5); 
itemBg = a.getResourceId(R.styleable.ToolBar_itemBackground, -1);

a.recycle();

就这么简单的三步,即可完成对自定义属性的使用。

*********************************************************************

好了,基本用法已经讲完了,现在来看看一些注意点和知识点吧。

首先来看看attrs.xml文件。

该文件是定义属性名和格式的地方,需要用<declare-styleable name="ToolBar"></declare-styleable>包围所有属性。其中name为该属性集的名字,主要用途是标识该属性集。那在什么地方会用到呢?主要是在第三步。看到没?在获取某属性标识时,用到"R.styleable.ToolBar_buttonNum",很显然,他在每个属性前面都加了"ToolBar_"。

在来看看各种属性都有些什么类型吧:string , integer , dimension , reference , color , enum......

前面几种的声明方式都是一致的,例如:<attr name="buttonNum" format="integer"/>。 
只有enum是不同的,用法举例:

<attr name="testEnum"> 
    <enum name="fill_parent" value="-1"/> 
    <enum name="wrap_content" value="-2"/> 
</attr>

如果该属性可同时传两种不同的属性,则可以用“|”分割开即可。

 

让我们再来看看布局xml中需要注意的事项。

首先得声明一下:xmlns:toolbar=http://schemas.android.com/apk/res/cn.zzm.toolbar 
注意,“toolbar”可以换成其他的任何名字,后面的url地址必须最后一部分必须用上自定义组件的包名。自定义属性了,在属性名前加上“toolbar”即可。

 

最后来看看java代码中的注意事项。

在自定义组件的构造函数中,用

TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.ToolBar);

来获得对属性集的引用,然后就可以用“a”的各种方法来获取相应的属性值了。这里需要注意的是,如果使用的方法和获取值的类型不对的话,则会返回默认值。因此,如果一个属性是带两个及以上不用类型的属性,需要做多次判断,知道读取完毕后才能判断应该赋予何值。当然,在取完值的时候别忘了回收资源哦!

 

自定义属性数据类型简介:

 

一、reference:参考指定Theme中资源ID。

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="label" format="reference" >
    </declare-styleable>

2.使用:

1
    <Buttonzkx:label="@string/label" >

二、Color:颜色

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="textColor" format="color" />
    </declare-styleable>

2.使用:

1
    <Button zkx:textColor="#ff0000"/>

三、boolean:布尔值

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="isVisible" format="boolean" />
    </declare-styleable>

2.使用:

1
    <Button zkx:isVisible="false"/>

四、dimension:尺寸值

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="myWidth" format="dimension" />
    </declare-styleable>

2.使用:

1
    <Button zkx:myWidth="100dip"/>

五、float:浮点型

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="fromAlpha" format="float" />
    </declare-styleable>

2.使用:

1
    <alpha zkx:fromAlpha="0.3"/>

六、integer:整型

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="frameDuration" format="integer" />
    </declare-styleable>

2.使用:

1
    <animated-rotate zkx:framesCount="22"/>

七、string:字符串

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="Name" format="string" />
    </declare-styleable>

2.使用:

1
    <rotate zkx:pivotX="200%"/>

八、fraction:百分数

1.定义:

1
2
3
    <declare-styleable name="My">
        <attr name="pivotX" format="fraction" />
    </declare-styleable>

2.使用:

1
    <rotate zkx:Name="My name is zhang kun xiang"/>

九、enum:枚举

1.定义:

1
2
3
4
5
    <declare-styleable name="My">
        <attr name="language">
            <enum name="English" value="1"/>
        </attr>
    </declare-styleable>

2.使用:

1
    <Button zkx:language="English"/>

十、flag:位或运算

1.定义:

1
2
3
4
5
6
    <declare-styleable name="My">
        <attr name="windowSoftInputMode">
    	<flag name="stateUnspecified" value="1" />
    	<flag name = "adjustNothing" value = "0x30" />
        </attr>
    </declare-styleable>

2.使用:

1
    <activity android:windowSoftInputMode="stateUnspecified | adjustNothing">

属性定义时可以指定多种类型值:

1
2
3
    <declare-styleable name = "名称">    
	<attr name="background" format="reference|color" />
    </declare-styleable>

使用:<ImageView android:background = "@drawable/图片ID|#00FF00"/>

 

 

attr 属性 
style 样式 
二者都是在res/values下面的xml文件 

attr: for example: 

Java代码  收藏代码
  1. <LinearLayout  
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent">  



类似的"layout_height,layout_width"都是属性 

style就是这个控件设定好的一些值,方便重复调用 
自定义的一个样式"TextStyle" 
使用的android默认的属性shadowDx..设置好的具体的值 

Java代码  收藏代码
  1. <style name="TextStyle">  
  2.   <item name="android:shadowDx">-0.5</item>  
  3.   <item name="android:shadowDy">1</item>  
  4.   <item name="android:shadowRadius">0.5</item>  
  5.   <item name="android:singleLine">true</item>  
  6.   <item name="android:ellipsize">marquee</item>  
  7. </style>  



自定义的attr: 这个format就是格式 
reference   表示引用,参考某一资源ID 
string   表示字符串 
color   表示颜色值 
dimension   表示尺寸值 
boolean   表示布尔值 
integer   表示整型值 
float   表示浮点值 
fraction   表示百分数 
enum   表示枚举值 
flag   表示位运算 

Java代码  收藏代码
  1. <resources>  
  2.     <declare-styleable name="ViewPagerIndicator">  
  3.         <!-- Style of the circle indicator. -->  
  4.         <attr name="vpiCirclePageIndicatorStyle" format="reference"/>  
  5.         <!-- Style of the icon indicator's views. -->  
  6.         <attr name="vpiIconPageIndicatorStyle" format="reference"/>  
  7.         <!-- Style of the line indicator. -->  
  8.         <attr name="vpiLinePageIndicatorStyle" format="reference"/>  
  9.         <!-- Style of the title indicator. -->  
  10.         <attr name="vpiTitlePageIndicatorStyle" format="reference"/>  
  11.         <!-- Style of the tab indicator's tabs. -->  
  12.         <attr name="vpiTabPageIndicatorStyle" format="reference"/>  
  13.         <!-- Style of the underline indicator. -->  
  14.         <attr name="vpiUnderlinePageIndicatorStyle" format="reference"/>  
  15.     </declare-styleable>  
  16. </resources>  



使用的时候,在布局文件头里 
添加 
xmlns:myapp="http://schemas.android.com/apk/res/包名" 

在xml文件里使用跟系统自带控件一样使用 
类似下面的语法 
myapp:vpiIconPageIndicatorStyle="xxxxx" 

====================================================================================================================================================================
上边的如果要使用自定义的属性进行自定义样式 
格式应该是 

Java代码  收藏代码
  1.     <style name="Theme.PageIndicatorDefaults" parent="android:Theme">  
  2.         <item name="vpiIconPageIndicatorStyle">@style/Widget.IconPageIndicator</item>  
  3.         <item name="vpiTabPageIndicatorStyle">@style/Widget.TabPageIndicator</item>  
  4.     </style>  
  5.   
  6. //上图样式的名称是"Theme.PageIndicatorDefaults",包含两个属  
  7. //性"vpiIconPageIndicatorStyle"和"vpiTabPageIndicatorStyle",值都是引用类型的  



attr和style格式都是需要<resources>起头的 

获取示例: 

Java代码  收藏代码
    1. TypedArray a = context.obtainStyledAttributes(null, R.styleable.ViewPagerIndicator,0, 0);  
    2. int rsid= a.getResourceId(R.styleable.ViewPagerIndicator_vpiTabPageIndicatorStyle, 0);  
    3. a.recycle();//必须回收  
1
 

posted on 2015-03-31 20:16  wwicked  阅读(242)  评论(0编辑  收藏  举报

导航