我爱编程

Android Drawable 分类笔记

2018-02-26  本文已影响0人  Marker_Sky

主要内容出自 《Android 开发艺术探索》,仅作记录。

1.1 BitmapDrawable

表示的就是一张图片

NinePatchDrawable:自动根据宽/高进行缩放不失真,可直接使用,可用用 XML 描述。<nine-patch >

1.2 ShapeDrawable

通过颜色来构造图形,既可以是纯色,也可以是具有渐变效果的图形。通过<shape>创建的 Drawable,实体类实际上是 GradientDrawable。

Value Are
android:innerRadius 圆环的内半径,和 android:innerRadiusRation 同时存在,以前者为准
android:thickness 圆环的厚度,半径减去内半径的大小
android:innerRadiusRation 内半径占整个 Drawable 宽度的比例,默认为 9。如果为 n 则内半径 = 宽度/n
android:thicknessRatio 厚度占整个 Drawable 宽度的比例,默认为 3。如果为 n 则厚度 = 宽度/n
android:useLevel 一般都应是 false,除非被当做 LevelListDrawable(堆叠图片)
  1. android:radius 四个角同时设定角度,优先级较低会被其他四个属性覆盖。
  2. android:topLeftRadius 左上角角度
  3. android:topRightRadius 右上角角度
  4. android:bottomLeftRaius 左下角角度
  5. android:bottomRightRadius 右下角角度
  1. android:angle 渐变的角度默认为0,数值为 45 的倍数,0表示从左到右,90 表示从下到上。
  2. android:centerX 渐变的中心点横轴坐标
  3. android:centerY 渐变的中心点纵坐标
  4. android:startColor 渐变的起始色
  5. android:centerColor 渐变的中间色
  6. android:endColor 渐变的结束色
  7. android:gradientRadius 渐变半径,仅当 android:type = "radial" 时有效
  8. android:useLevel 一般为 false,当 Drawable 作为 StateListDrawable 时使用时为 true
  9. android:type 渐变的类别,有 linear(线性渐变)、radial(径向渐变)、sweep(扫描线渐变)三种,其中默认值为线性渐变
  1. android:width 描边的宽度,越大则 shape 的边缘线看起来越粗
  2. android:color 描边的颜色
  3. android:dashWidth 组成虚线的线段的宽度
  4. android:dashGap 组成虚线的线段之间的间隔,间隔越大看起来空隙就越大。

1.3 LayerDrawable

对应标签 <layer-list>,表示的是一种层次化的 Drawable 集合。一个 <layer-list> 可以包含多个 <item>,每个 item 表示一个 Drawable。每个 item 也可以是类似 <shape> 那样的 Drawable。

1.4 StateListDrawable

对应 <selector> 标签,也是 Drawable 的集合,每个 Drawable 对应 View 的一种状态,最常见的是 Button 的实现。

状态 含义
android:state_pressed 按下状态,比如 Button 按下没有松开
android:state_focused View 已经获取了焦点
android:state_selected 选择了 View
android:state_checked CheckBox 选中
android:state_enabled 当前 View 处于可用状态

1.5 LevelListDrawable

对应于 <level-list> 标签,同样表示一个 Drawable 集合,集合中的每一个 Drawable 都有一个 level 概念,根据不同的等级,LevelListDrawable 会切换对应的 Drawable

1.6 TransitionDrawable

对应于 <transition> 标签,用于实现两个 Drawable 直接的淡入淡出效果。

TransitionDrawable drawable = (TransitionDrawable) textView.getBackground();
drawable.startTransition(1000);

1.7 InsetDrawable

对应于 <inset> 标签,可以将其他 Drawable 内嵌到自己当中,通过 LayerDrawable 也可以实现。

1.8 ScaleDrawable

对应于 <scale> 标签,根据自己的等级将指定的 Drawable 缩放到一定的比例。

1.9 ClipDrawable

对应于 <clip> 标签,根据自己当前的 level 来裁剪另一个 Drawable

ImageView clipImage = (ImageView)findViewById(R.id.clip_image);
ClipDrawable clipDrawable = clipImage.getDrawable();
clipDrawable.setLevel(5000);

等级为 0 - 10000,5000表示裁剪一半。

1.10 自定义 Drawable

自定义 Drawable 可以用来实现作为ImageView、TextView等资源的背景

参考资料:

  1. Android Drawable 那些不为人知的高效用法
  2. 《Android 开发艺术探索》
上一篇下一篇

猜你喜欢

热点阅读