android 原来drawable还有这些分类,知道得确实太晚了

欢迎大家下载我个人开发的app安琪花园

首先列举一下android 自带的drawable有哪些

LevelListDrawable
TransitionDrawable
InsetDrawable
BitmapDrawable
ShapeDrawable
LayerDrawable
StateListDrawable
ScaleDrawable
ClipDrawable

单纯的通过上面的名字,你能知道每一种drawable的 使用场景吗?
对于我个人而言,这里面有很多drawable,之前我都不知道有这种drawable
更别说他的使用场景了。
我用得比较多的是ShapeDrawable, StateListDrawable, LayerDrawable, 其它的drawable我都没有怎么听说过。但是最近看了一本书里面解释到了这些drawable研究了一下,发现真的很实用。

对于每一种drawable的效果图请下载github上面的代码自己运行亲自试一下
github地址

image.png

接下来对每一种drawable进行分析


BitmapDrawable

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/ic_launcher"
    android:antialias="true"
    android:dither="true"
    android:tileMode="repeat"
    >
</bitmap>

效果图

image.png

BitmapDrawable比较简单, 至于这里面的每一种属性大家可以自己 去一个一个的试。

android:src

这个很简单,就是图片的资源id。

android:antialias

是否开启图片抗锯齿功能。

android:dither

是否开启抖动效果。

android:gravity

可以配置图片的显示位置,如果控件的宽高大于图片的话,可以设置具体显示的位置

android:tileMode

平铺模式。这个选项有如下几个值:"disabled" "clamp" "repeat" "mirror"
具体每一个值是 什么意思大家可以改变每一个值 来试试 上面的示例用的是repeat

ShapeDrawable

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke
        android:width="3dp"
        android:color="#ff0000"
        android:dashWidth="2dp"
        android:dashGap="3dp" />
    <corners android:radius="5dp"/>
</shape>

效果图

image.png

ShapeDrawable可以说是平时开发的过程中用的比较多的,里面的属性大家应该也能掌握,就不一一的列出来了。

LayerDrawable

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/shape_drawable" />
    <item
        android:bottom="10dp"
        android:drawable="@drawable/bitmap_drawable"
        android:left="10dp"
        android:right="10dp"
        android:top="10dp" />

    <item android:gravity="center">
        <shape android:shape="oval">
            <solid android:color="#ff0000"/>
            <size android:width="30dp"
                android:height="30dp"
                />
        </shape>
    </item>
</layer-list>

效果图

image.png

LayerDrawable可以说是android开发中用得比较多的,将BitmapDrawable, ShapeDrawable叠加生成layerDrawable其效果图就是上面这样的。
LayerDrawable对应的XML标签是<layer-list>,它表示一种层次化的Drawable集合,通过将不同的Drawable放置在不同的层上面从而达到一种叠加后的效果
LayerList里面可以包含多个item

StateListDrawable

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/bitmap_drawable" android:state_selected="true" />
    <item android:drawable="@drawable/shape_drawable" />
</selector>

这个效果图 就不贴出来了,凡是做android的应该都能看得懂上面的这个代码,
大家只需要知道View的常见状态有:

  1. android:state_selected
  2. android:state_pressed
  3. android:state_focused
  4. android:state_checkable
  5. android:state_checked
  6. android:state_enable

LevelListDrawable

<?xml version="1.0" encoding="utf-8"?>
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:drawable="@drawable/bitmap_drawable"
        android:maxLevel="2"
        android:minLevel="0" />

    <item
        android:drawable="@drawable/shape_drawable"
        android:maxLevel="4"
        android:minLevel="3" />
</level-list>

当我调用如下代码时:

 val drawalbe = ContextCompat.getDrawable(this, R.drawable.level_drawalbe) as? LevelListDrawable
        bg.background = drawalbe
        drawalbe?.level = 3

效果图

image.png

这个时候控件的背景就变成了shape_drawable,
如果把drawable的level设置为小于3大于0的,背景就变成了bitmap_drawable。
默认的话level为0, 显示的是bitmap_drawable.
如果设置的level值 不在上面设置的整数范围内, 则设置背景是 没有效果的

TransitionDrawable

<?xml version="1.0" encoding="utf-8"?>
<transition xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/bmp_img" />

    <item android:drawable="@drawable/ic_launcher" />
</transition>

在代码中的一个使用情况如下:

 val drawable = ContextCompat.getDrawable(this, R.drawable.transition_drawable) as? TransitionDrawable
        bg.background = drawable
        drawable?.startTransition(4000)

TransitionDrawable对应于<transition>标签,它用于实现两个Drawable之间的淡入淡出效果.
只需要调用startTransition方法即可,如果还原的话 调用reverseTransition。
以前不知道有这个 drawable的时候 , 要实现这样的效果 还得去写动画 感觉还 挻麻烦的

InsetDrawable

InsetDrawable对应于<inset>标签,它可以将其他Drawable内嵌到自己当中,并可以在四周留出一定的间距。当一个View希望自己的背景比自己的实际区域小的时候,可以采用InsetDrawable来实现.
其实InsetDrawable能实现的效果, 用LayerDrawable也能实现。
如:

<?xml version="1.0" encoding="utf-8"?>
<inset xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/bmp_img"
   android:inset="15dp"/>

效果图

image.png

明显能看到背景图片是留了边距的,比实际的view要小。

ScaleDrawable, ClipDrawable

这两个drawable感觉用处不大。很少用到。好奇的朋友 可以自己去试试

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

推荐阅读更多精彩内容