`
wiseideal
  • 浏览: 449076 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

attrs中属性的format

 
阅读更多

转自:http://jiayanjujyj.iteye.com/blog/1392541

 

 

 

最近在做软件从2.3到4.0的改变的一些工作,其中涉及了一些style和theme相关的东西。上网上查了一些东西,这个一并说说。关于android中style和theme的基本使用,这里就不再赘述了,可以查看Dev Guide上的东东,这里主要说说自己比较困惑的一些部分。

Android platform已经提供了许多的style和theme供开发者使用,可以在R.style类中找到可供使用的style,不过需要把其中的下划线(_)改成点号(.). 如果我们查看R.style类的文档,发现有些style没有描述或者描述的不怎么清楚,还是看看原文件中怎么定义的吧。style和themem的原文件可以在<ANDROID_SDK_HOME>/platforms/android-15/data/res/values/下面找到,其中styles.xml和theme.xml文件就是R.style类的定义文件。可以看到theme.xml中定义了Theme.Holo, Theme.Holo.Light等theme。

在values文件下还有一个文件就是attrs.xml,这是R.attr和R.styleable类的定义文件。attrs.xml中定义了每个view的可用的属性,例如使用android:textAppearance就是在attrs.xml中定义了<attr name="textAppearance" format="reference" />,那麽这里点format="reference"使什么意思呢?这里解释一下,一些例子来源于网络:


1. reference:参考某一资源ID。


(1)属性定义:

<declare-styleable name = "名称">

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

</declare-styleable>

(2)属性使用:

<ImageView

android:layout_width = "42dip"

android:layout_height = "42dip"

android:background = "@drawable/图片ID"

/>

2. color:颜色值


<declare-styleable name = "名称">

<attr name = "textColor" format = "color" />

</declare-styleable>

3. boolean:布尔值


<declare-styleable name = "名称">

<attr name = "focusable" format = "boolean" />

</declare-styleable>

4. dimension:尺寸值。


<declare-styleable name = "名称">

<attr name = "layout_width" format = "dimension" />

</declare-styleable>

5. float:浮点值。

6. integer:整型值。

7. string:字符串

8. fraction:百分数。

9. enum:枚举值

10. flag:位或运算


注意:

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

(1)属性定义:

<declare-styleable name = "名称">

<attr name = "background" format = "reference|color" />

</declare-styleable>

(2)属性使用:

<ImageView

android:layout_width = "42dip"

android:layout_height = "42dip"

android:background = "@drawable/图片ID|#00FF00"

/>


ok, 了解完这些,下面说说怎么自定义View和属性,可以参考http://blog.csdn.net/jincf2011/article/details/6344678



xml 文件里定义控件的属性,我们已经习惯了android:attrs="" ,那么我们能不能定义自己的属性能,比如:test:attrs="" 呢?答案是肯定的.

进入主题。大致以下步骤:

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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="MyView">
  4. <attr name="textColor" format="color" />
  5. <attr name="textSize" format="dimension" />
  6. </declare-styleable>
  7. </resources>

二、 我们在MyView.java 代码编写如下,其中下面的构造方法是重点,我们获取定义的属性R.sytleable.MyView_textColor, 获取方法中后面通常设定默认值(float textSize = a.getDimension(R.styleable.MyView_textSize, 36 ); ) 防止我们在xml 文件中没有定义.从而使用默认值!

MyView 就是定义在<declare-styleable name="MyView "></declare-styleable> 里的 名字,获取里面属性用 名字_ 属性 连接起来就可以.TypedArray 通常最后调用 .recycle() 方法,为了保持以后使用该属性一致性!


  1. public MyView(Context context,AttributeSet attrs)
  2. {
  3. super(context,attrs);
  4. mPaint = new Paint();
  5. TypedArray a = context.obtainStyledAttributes(attrs,
  6. R.styleable.MyView);
  7. int textColor = a.getColor(R.styleable.MyView_textColor,
  8. 0XFFFFFFFF);
  9. float textSize = a.getDimension(R.styleable.MyView_textSize, 36);
  10. mPaint.setTextSize(textSize);
  11. mPaint.setColor(textColor);
  12. a.recycle();
  13. }

MyView.java MyView控件全部代码如下:


  1. package com.android.tutor;
  2. import android.content.Context;
  3. import android.content.res.TypedArray;
  4. import android.graphics.Canvas;
  5. import android.graphics.Color;
  6. import android.graphics.Paint;
  7. import android.graphics.Rect;
  8. import android.graphics.Paint.Style;
  9. import android.util.AttributeSet;
  10. import android.view.View;
  11. public class MyView extends View {
  12. private Paint mPaint;
  13. private Context mContext;
  14. private static final String mString = "Welcome to Mr Wei's blog";
  15. public MyView(Context context) {
  16. super(context);
  17. mPaint = new Paint();
  18. }
  19. public MyView(Context context,AttributeSet attrs)
  20. {
  21. super(context,attrs);
  22. mPaint = new Paint();
  23. TypedArray a = context.obtainStyledAttributes(attrs,
  24. R.styleable.MyView);
  25. int textColor = a.getColor(R.styleable.MyView_textColor,
  26. 0XFFFFFFFF);
  27. float textSize = a.getDimension(R.styleable.MyView_textSize, 36);
  28. mPaint.setTextSize(textSize);
  29. mPaint.setColor(textColor);
  30. a.recycle();
  31. }
  32. @Override
  33. protected void onDraw(Canvas canvas) {
  34. // TODO Auto-generated method stub
  35. super.onDraw(canvas);
  36. //设置填充
  37. mPaint.setStyle(Style.FILL);
  38. //画一个矩形,前俩个是矩形左上角坐标,后面俩个是右下角坐标
  39. canvas.drawRect(new Rect(10, 10, 100, 100), mPaint);
  40. mPaint.setColor(Color.BLUE);
  41. //绘制文字
  42. canvas.drawText(mString, 10, 110, mPaint);
  43. }
  44. }

三、将我们自定义的MyView 加入布局main.xml 文件中,并且使用自定义属性,自定义属性必须加上:

" xmlns:test ="http://schemas.android.com/apk/res/com.android.tutor" ,test是自定义属性的前缀, com.android.tutor 是我们包名.


main.xml 全部代码如下:


  1. <?xml
  2. version="1.0" encoding="utf-8"?>
  3. <LinearLayout
  4. xmlns:android="http://schemas.android.com/apk/res/android"
  5. xmlns:test="http://schemas.android.com/apk/res/com.android.tutor"
  6. android:orientation="vertical"
  7. android:layout_width="fill_parent"
  8. android:layout_height="fill_parent"
  9. >
  10. <TextView
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:text="@string/hello"
  14. />
  15. <com.android.tutor.MyView
  16. android:layout_width="fill_parent"
  17. android:layout_height="fill_parent"
  18. test:textSize="20px"
  19. test:textColor="#fff"
  20. />
  21. </LinearLayout>


四、运行之效果如下图:


最后:

关于在引用资源时使用@还是?的问题,我们在设置style的时候既可以使用@也可以使用?, 例如android:textAppearance="@andorid:style/TextAppearance.Medium",

android:textAppearance="?android:attr/textAppearanceMedium"

使用@表示使用固定的style,而不会跟随Theme改变,这个style可以在style.xml中找到。

而?表示从Theme中查找引用的资源名,例如上面的textAppearanceMedium,查看themes.xml文件,可以看到在不同的theme中,textAppearanceMedium引用的style是不同的。如在Them.Holo中<item name="textAppearanceMedium">@android:style/TextAppearance.Holo.Medium</item>

,Theme.Holo.Light中为<item name="textAppearanceMedium">@android:style/TextAppearance.Holo.Light.Medium</item>

分享到:
评论

相关推荐

    Android自定义控件使用attrs属性Demo

    本教程将深入讲解如何在Android中创建自定义控件并使用`attrs.xml`文件来定义自定义属性,以便在布局文件中更灵活地配置和使用这些控件。 首先,我们了解`attrs.xml`文件的作用。这个文件通常位于`res/values`目录...

    Android中自定义属性attrs.xml、TypedArray的使用

    `attrs.xml`是用来定义自定义组件的属性,而`TypedArray`则是一个用于处理这些属性的工具类。本篇文章将深入探讨这两个概念及其在实际开发中的应用。 首先,让我们了解`attrs.xml`文件。在`res/values`目录下创建`...

    Android自定义View中attrs.xml的实例详解

    在values中定义一个attrs.xml 然后添加相关属性 这一篇先详细介绍一下attrs.xml的属性。 &lt;?xml version=1.0 encoding=utf-8?&gt; //自定义属性名,定义公共属性 &lt;attr name=titleText format=string/&gt; ...

    自定义控件属性的demo

    3. **定义自定义属性**:在res/values/attrs.xml文件中定义自定义属性,如: ```xml &lt;attr name="custom_color" format="color"/&gt; &lt;attr name="custom_text" format="string"/&gt; ``` 这里定义了两个属性...

    android自定义属性(三种方法dome)

    在Android中,自定义属性通常通过创建一个XML资源文件(res/values/attrs.xml)来实现。在这个文件中,我们可以定义一组属性,例如: ```xml &lt;attr name="customTextColor" format="color"/&gt; ...

    详解Android自定义控件属性TypedArray以及attrs

    总结来说,`attrs.xml`文件用于定义自定义控件的属性,`TypedArray`则提供了从XML布局中高效读取这些属性的机制。开发者可以通过这种方式灵活地扩展自定义控件的功能,为应用程序带来更丰富的界面表现和用户体验。...

    使用自定义属性源代码

    在本文中,我们将深入探讨如何在代码中实现自定义属性,并以一个具体的例子——"RainAnimation"来阐述这个过程。 自定义属性通常用于UI组件,例如Android或WPF等平台,它们提供了丰富的用户界面定制能力。首先,让...

    自定义属性

    在编程和软件开发中,"自定义属性"是一个重要的概念,特别是在UI设计和框架扩展性方面。自定义属性允许开发者根据特定项目需求扩展标准组件的功能,或者为已有的控件增添新的行为和特性。以下是对这个主题的详细阐述...

    Android代码-SmoothCheckBox

    Attrs 属性 attr format description duration integer 动画持续时间 stroke_width dimension 未选中时边框宽度 color_tick color 对勾颜色 color_checked color 选中时填充颜色 color_unchecked ...

    android 重写控件添加自定义属性

    自定义属性需要在res/values/attrs.xml文件中声明: ```xml &lt;!-- 定义自定义属性 --&gt; &lt;attr name="customTextSize" format="dimension"/&gt; &lt;attr name="customTextColor" format="color"/&gt; ``` 这里,我们...

    Android代码-安卓分栏布局

    SplitLayout Android SplitLayout, which splits the available space between two child views by dragging the center handle. ...Attrs 属性 attr format description default splitOrientatio

    android 自定义控件 自定义属性详细介绍

    自定义控件的属性定义在`res/values/attrs.xml`文件中。通过在该文件中声明自定义属性,我们可以为控件添加新的配置选项。以下是几种常见的属性类型及其用法: 1. **reference**: 这种类型用于引用已存在的资源ID,...

    android 自定义View并添加属性

    这里的`app:`前缀是指定自定义命名空间,它必须与你在`attrs.xml`中声明的`name`属性相对应。 至此,我们成功创建了一个自定义View,并为它添加了自定义属性。通过这种方式,开发者可以根据需求定制各种复杂、个性...

    自定义View使用自定义属性

    总结来说,自定义View使用自定义属性的过程主要包括:在`attrs.xml`中声明属性,通过`TypedArray`获取属性值,并在自定义View的逻辑中应用这些属性。这个过程增强了Android组件的可定制性,使得开发者能够创建出更...

    自定义属性过程

    2. 在`attrs.xml`中声明自定义属性。 3. 在布局文件中引用自定义View并设置属性值。 4. 在`onDraw()`方法中根据属性值进行绘图。 这个过程允许开发者扩展Android的视图功能,实现更复杂和个性化的界面效果。通过...

    Android自定义菜单属性DEMO

    这包括在attr.xml文件中定义属性,解析这些属性并在自定义View类中使用它们,以及在布局文件中设置这些属性。这个DEMO对于提升Android开发者对自定义组件的理解和实践能力非常有帮助。通过学习和实践,开发者可以更...

    Android自定义属性

    2. 在`attrs.xml`中定义自定义属性,格式如下: ```xml &lt;attr name="custom_color" format="color" /&gt; &lt;attr name="custom_text" format="string" /&gt; &lt;!-- 更多自定义属性... --&gt; ``` 这里我们定义了两个...

    android自定义View,并自定义属性

    `R.styleable.MyCustomTextView`引用了我们在`attrs.xml`中定义的属性集,`R.styleable.MyCustomTextView_customText`则是具体的属性引用。 现在,自定义的TextView已经具备了读取并使用自定义属性的能力。在布局...

Global site tag (gtag.js) - Google Analytics