【Android Drawable】三、LayerDrawable、LevelListDrawable、ColorDrawable、ColorStateList

LayerDrawable

<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
    >
    <item 
        android:id=""
        android:drawable=""
        android:gravity=""
        android:left=""
        android:top=""
        android:right=""
        android:bottom=""
        android:width=""
        android:height=""
        android:start=""
        android:end="">
    </item>
</layer-list>

layer-list 的每个 item 也是通过 android:drawable 属性或者在 <item> 标签内定义 drawable 进行 Drawable 的引用,每个 item 有 top、left、bottom、right 等属性表示图层相对于 View 上下左右的偏移量,单位为像素;
每一个 Drawable 图层都会被缩放至 View 大小,bitmap 需要通过 gravity 来控制图片的显示效果;
下面的 item 会覆盖上面的 item;
LayerDrawable 的构造方法:

public LayerDrawable(@NonNull Drawable[] layers)
LayerDrawable(@NonNull Drawable[] layers, @Nullable LayerState state)
LayerDrawable() 
LayerDrawable(@Nullable LayerState state, @Nullable Resources res)

在外部可以调用的就是第一个传入 Drawable 数组的构造方法,把所以的图层
放在 Drawable 数组里面传进去
也对外提供了一系列操作 Drawable 的方法,通过 id 或 index 对 Layer 进行设置:

public int addLayer(Drawable dr)
public Drawable findDrawableByLayerId(int id)
public void setId(int index, int id)
public int getId(int index)
public int getNumberOfLayers()
public boolean setDrawableByLayerId(int id, Drawable drawable)
public int findIndexByLayerId(int id) 
public void setDrawable(int index, Drawable drawable)
public Drawable getDrawable(int index) 
public void setLayerSize(int index, int w, int h)
public void setLayerWidth(int index, int w) 
public void setLayerHeight(int index, int h) 
public void setLayerGravity(int index, int gravity)
public void setLayerInset(int index, int l, int t, int r, int b) 
public void setLayerInsetRelative(int index, int s, int t, int e, int b)
public void setLayerInsetLeft(int index, int l)
public void setLayerInsetRight(int index, int r)
public void setLayerInsetTop(int index, int t)
public void setLayerInsetBottom(int index, int b)
public void setLayerInsetStart(int index, int s)
public void setLayerInsetEnd(int index, int e)
public void setPaddingMode(int mode)
public void setPadding(int left, int top, int right, int bottom)

LevelListDrawable

<level-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="" android:minLevel="" android:maxLevel=""/>
</level-list>

LevelListDrawable 的 Drawable 引用和 LayerDrawable 类似,每一个 item 都
都有一个 minLevel 和 maxLevel。
通过 Drawable#setLevel 方法设置 level ,根据 level 的取值显示不同的 Drawable。
LevelListDrawable 外部可以调用的构造方法只有一个无参的构造方法

public LevelListDrawable()
private LevelListDrawable(LevelListState state, Resources res)

内部调用一个两个参数的构造方法,默认两个参数都为 null,其中一个参数
为 ConstantState 的子类 LevelListState 对象。
对外提供了添加 Drawable 的方法:

public void addLevel(int low, int high, Drawable drawable) {
        if (drawable != null) {
            mLevelListState.addLevel(low, high, drawable);
            // in case the new state matches our current state...
            onLevelChange(getLevel());
        }
    }

ColorDrawable & ColorStateList

ColorDrawable 很简单,标签为 <color> 的 xml 文件,只有一个属性:

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

public 构造方法有两个,一个参数为空,一个参数是一个 int 类型的 color,可以是十六进制数值,也可以是 res/values/colors.xml 中定义的颜色,当然也可以是系统资源中定义的颜色,还可以是 Color 类生成的 Color:

public ColorDrawable()
public ColorDrawable(@ColorInt int color)
private ColorDrawable(ColorState state, Resources res)

对外提供了设置颜色的方法:

public void setColor(@ColorInt int color) {
        if (mColorState.mBaseColor != color || mColorState.mUseColor != color) {
            mColorState.mBaseColor = mColorState.mUseColor = color;
            invalidateSelf();
        }
    }

此外还有一个 ColorStateList 类,是定义在 res/color 目录里的 xml 文件生成的对象,该 xml 文件的根标签是 <selector>,每一个 item 都有一个 android:color 属性,例如

<selector xmlns:android="http://schemas.android.com/apk/res/android">
   <item android:state_focused="true" android:color="@color/testcolor1"/>
   <item android:state_pressed="true" android:state_enabled="false" android:color="@color/testcolor2" />
   <item android:state_enabled="false" android:color="@color/testcolor3" />
   <item android:color="@color/testcolor5"/>
 </selector>

public 的构造方法:

public ColorStateList(int[][] states, @ColorInt int[] colors)

参数就是两个数组,分别存储 state 和对应的 color。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • 概述 Android把任何可绘制在屏幕上的图形图像都称为drawable 资源,你可以通过类似getDrawabl...
    小芸论阅读 2,707评论 2 5
  • 1、Drawable 简介 Drawable——可简单理解为可绘制物,表示一些可以绘制在 Canvas 上的对象。...
    牧秦丶阅读 14,657评论 0 15
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • 一提起时光倒流,我就想起这段话来: “你好像瘦了,头发也变长了,背影陌生到让我觉得,见你是上个世纪的事,然后你开口...
    云时之间阅读 697评论 2 4
  • 我都忘记这是来到山传的第几个夜晚,或者说也从来没有记得过哪一个夜晚。 大一的时候每次上过晚自习都会急匆匆的从教室赶...
    wordwide阅读 173评论 0 1