Android如何在代码中获取attr属性的值

来源:互联网 发布:js 设置display block 编辑:程序博客网 时间:2024/05/16 03:55

获取arrt的值

有时候我们需要把颜色,数值写成attr属性,这样做是为了屏蔽开发者对应具体数值,比如我们需要设置不同主题下的主色,副色,或者是不同版本的ActionBar大小,亦或者是不同Dpi下的DrawerLayout的宽度等。

在xml里,我们可以简单的引用attr属性值,例如:

android:background="?attr/colorPrimary"android:minHeight="?attr/actionBarSize"

当然,我们有时候也需要在代码中获取attr属性值:

TypedValue typedValue = new TypedValue();context.getTheme().resolveAttribute(R.attr.yourAttr, typedValue, true);// For stringtypedValue.stringtypedValue.coerceToString()// For other datatypedValue.resourceIdtypedValue.data;

获取arrt样式中的值

以上是针对个体数值根据不同类型来获取的,如果想要获取 style的话,需要在拿到 resourceId之后再进一步获取具体数值,以 TextAppearance.Large为例:

<style name="TextAppearance.Large">    <item name="android:textSize">22sp</item>    <item name="android:textStyle">normal</item>    <item name="android:textColor">?textColorPrimary</item></style>
TypedValue typedValue = new TypedValue();context.getTheme().resolveAttribute(android.R.attr.textAppearanceLarge, typedValue, true);int[] attribute = new int[] { android.R.attr.textSize };TypedArray array = context.obtainStyledAttributes(typedValue.resourceId, attribute);int textSize = array.getDimensionPixelSize(0 /* index */, -1 /* default size */);array.recycle();

注意,要记得调用 TypedArray.recycle()方法回收资源。

最后

看上去挺烦锁的,实际上应该是傻瓜思维,根据不同方法直接获取,例如:

getValueOfColorAttr(int attr)getValueOfTextSizeAttr(int style, int value)












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,00);  
  2. int rsid= a.getResourceId(R.styleable.ViewPagerIndicator_vpiTabPageIndicatorStyle, 0);  
  3. a.recycle();//必须回收  

0 0
原创粉丝点击