自定义 view - 自定义属性

2018-07-15  本文已影响207人  前行的乌龟

自定义 view 里面自定义属性是常常会用到的,大家必须做到熟练使用,但是奈何谁都有忘的时候,临时找别人的看着不爽,还是决定自己写一篇出来

自定义属性定义过程:

  1. 在 values 中的 attr 文件声明所需的参数
  2. 然后 rebuild 一下
  3. 在 xml 布局中添加资源引用地址
  4. 在 xml 的 view 标签中使用
  5. 在 view 中解析自定义属性,获取参数

attr 文件

attr 是 values 目录下的资源文件,新建项目是没有 attr 文件的,我们自己新建一个出来放到 values 里面就行,注意名字别写错


Snip20180715_1.png

attr 中的自定义属性样式

    <declare-styleable name="MyView">
        <attr name="name" format="string"></attr>
        <attr name="info" format="float"></attr>
    </declare-styleable>

Android 项目只有一个 attr.xml 文件,所有的自定义属性都写在一起,为了方便 attr 中的自定义属性以所在 view 分组存放。其中 MyView 就是这个 view 的名字,以 <declare-styleable> 为标签,里面自然就是一个个自定义属性啦

细心的朋友可以发现,自定义 view 可以指定不同的数据类型,Android 中自定义属性支持的数据类型还是挺多的,详细见下表:


Snip20180715_2.png

我这markdown 写表格bug ,所以直接用被人的图,我再补充一下:


自定义属性提供枚举值

按照下面这样写就性,enum 就能看出来这是枚举

        <attr name="showMode">
            <enum name="left" value="0" />
            <enum name="center" value="1" />
        </attr>

view 中获取自定义属性值

window 会解析整个视图树并对象化,然后把每个 view 在 xml 中的属性发包成一个结合传递给相关的 view ,这个属性集合就是 TypedArray 了,我们在 view 的构造函数中可以获取 TypedArray

有一点要注意,自定义属性的 id 是系统自动生成的,id = 自定义属性组名 + "_" + 自定义属性名,例如:

String name = typedArray.getString(R.styleable.MyView_name);

MyView 是自定义属性组名,name 是自定义属性名

获取自定义参数

    public MyView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        setOnTouchListener(touchListener);

        // 获取属性集合 TypedArray 
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.MyView);

        // 获取字符串
        String name = typedArray.getString(R.styleable.MyView_string);
        // 获取 float ,后面是默认值
        float age = typedArray.getFloat(R.styleable.MyView_float,1);
        // 获取颜色值,后面是默认值
        int color = typedArray.getFloat.getColor(R.styleable.MyView_color, Color.BLACK);
        // 获取 dimension,后面是默认值
        int dimens = typedArray.getDimension(R.styleable.MyView_dimens, 0);
        // 获取图片
        Drawable drawable = typedArray.getDrawable(R.styleable.MyView_drawable);
        // 获取引用类型,这里获取的是引用类型资源的资源 id ,然后还得我们自己用这个id 才恩那个拿到引用了;类型资源对象
        int resourceId = typedArray.getResourceId(R.styleable.MyView_info, 0);

        // 用完要关闭回收资源,必须的强制性的
        typedArray.recycle();
    }

attr 的命名空间

我更喜欢称attr 的引用空间为资源引用地址,这块其实很简单,基本用不着我们自己写,1.0.1 版本的 AS 工具直接就帮你写好了,但是具体的我们还是要知道的,这里可能能会出问题,明白原理我们才能处理问题

理论上 attr 的命名空间是 "http://schemas.android.com/apk/res/" + 应用包名,比如例子中应该写成这样:

xmlns:myview="http://schemas.android.com/apk/com.bloodcrown.aaa02"

系统自带的属性后面直接跟 android

 xmlns:android="http://schemas.android.com/apk/res/android"

但是呢还是推荐使用 AS 工具推荐的方法,只写一个命名空间,可以包含所有的自定义属性

xmlns:app="http://schemas.android.com/apk/res-auto"

不推荐因为多个 view 写多个 命名空间,可能会引发混乱或是替代

有的朋友说我在 xml 里面怎么不能自动提示自定义 view 呢,其实着就像我们使用 R 文件的引用一样,我们得先 rebuild / 重启, 告知系统才行,要不系统怎么知道有什么呢


使用系统定义好的 xml 属性

日过我们能像使用系统属性那样,使用自定义属性,那么将会是十分友好的,感官上非常 Nice,就像下面这样

       <com.bloodcrown.aaa02.MyView
            android:id="@+id/view_a"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:layout_gravity="center"
            android:background="@color/colorPrimaryDark"
            app:info="12.0"
            app:name="全都是测试"/>
  1. 定义 xml 属性时使用 android: 前缀
    <declare-styleable name="RollingTextView">
        <attr name="duration" format="reference|integer" />

        <!-- Custom implementations of common android text attributes -->
        <attr name="android:gravity" tools:ignore="ResourceName" />
        <attr name="android:shadowColor" tools:ignore="ResourceName" />
        <attr name="android:shadowDx" tools:ignore="ResourceName" />
        <attr name="android:shadowDy" tools:ignore="ResourceName" />
        <attr name="android:shadowRadius" tools:ignore="ResourceName" />
        <attr name="android:text" tools:ignore="ResourceName" />
        <attr name="android:textAppearance" tools:ignore="ResourceName" />
        <attr name="android:textColor" tools:ignore="ResourceName" />
        <attr name="android:textSize" tools:ignore="ResourceName" />
        <attr name="android:textStyle" tools:ignore="ResourceName" />
    </declare-styleable>
  1. 获取自定义属性
            gravity = arr.getInt(R.styleable.RollingTextView_android_gravity, gravity)
            shadowColor = arr.getColor(R.styleable.RollingTextView_android_shadowColor, shadowColor)
            shadowDx = arr.getFloat(R.styleable.RollingTextView_android_shadowDx, shadowDx)
            shadowDy = arr.getFloat(R.styleable.RollingTextView_android_shadowDy, shadowDy)
            shadowRadius = arr.getFloat(R.styleable.RollingTextView_android_shadowRadius, shadowRadius)
            text = arr.getString(R.styleable.RollingTextView_android_text) ?: ""
            textColor = arr.getColor(R.styleable.RollingTextView_android_textColor, textColor)
            textSize = arr.getDimension(R.styleable.RollingTextView_android_textSize, textSize)
            textStyle = arr.getInt(R.styleable.RollingTextView_android_textStyle, textStyle)
  1. xml 种使用
    <com.yy.mobile.rollingtextview.RollingTextView
        android:id="@+id/carryTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/stickyLayout2"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="20dp"
        android:textSize="30sp" />

如何获取自定义 view 中的 style

上面我们可以让自定义 view 的自定义属性使用系统默认的属性,但是一旦view 设置了通用的 style 样式,那我们处理呢,也好办

  1. 一般我们获取自定义 view 自定义 属性时填的都是这个自定义属性在 style xml 文件中配置的 name
        val arr = context.obtainStyledAttributes(attrs, R.styleable.RollingTextView,
                defStyleAttr, defStyleRes)
  1. 那么我们在自定义属性中添加一个配置 style 的属性,用系统原生的,我们在获取数据时没有 id 可用
<attr name="android:textAppearance" tools:ignore="ResourceName" />
  1. 然后我们获取这个我们添加的 style
        val arr = context.obtainStyledAttributes(attrs, R.styleable.RollingTextView,
                defStyleAttr, defStyleRes)

        val textAppearanceResId = arr.getResourceId(
                R.styleable.RollingTextView_android_textAppearance, -1)
  1. 判断是不是有确定值,要是有我们就获取通用值。这里就传上面我们在 stype xml 文件中的 name,而是直接用这个通用样式值,重新解析数据
       if (textAppearanceResId != -1) {
            val textAppearanceArr = context.obtainStyledAttributes(
                    textAppearanceResId, R.styleable.RollingTextView)
            applyTypedArray(textAppearanceArr)
            textAppearanceArr.recycle()
        }

获取在带样式的构造函数中获取参数

public MyTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypedArray typedArray = context.getTheme().obtainStyledAttributes(attrs, R.styleable.MyTextViewApprence, defStyleAttr, 0);
        mText = typedArray.getString(R.styleable.MyTextViewApprence_text);
        mTextColor = typedArray.getColor(R.styleable.MyTextViewApprence_textColor, Color.BLACK);
        mTextSize = (int) typedArray.getDimension(R.styleable.MyTextViewApprence_textSize, 15);
        showMode = typedArray.getInt(R.styleable.MyTextViewApprence_showMode, 0);
        typedArray.recycle();
    }

系统如何给自定义 attr 设置常量值

  1. 先声明出 attr


  2. 设置 theme item ,引用 style 的常量值


  3. style 声明常量值



参考资料:

上一篇下一篇

猜你喜欢

热点阅读