Android drawable资源分析-简介

drawable资源在Android开发中使用的十分普遍,它的存在使得Android控件的UI交互有了更多的可能。由于平时的开发仅仅使用drawable资源绘制圆角边框,或者选择按钮样式,忽略了drawable其他强大的功能。现将对drawable的使用进行简介,并对drawable资源的类型进行逐个分析。

一、drawable的使用

drawable资源集中放在安卓项目中的res-drawable文件夹当中,为xml格式的文件。


drawable文件位置.png

drawable文件的格式如下:

<?xml version="1.0" encoding="UTF-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <!-- 填充的颜色 -->
    <solid android:color="#000000" />
</shape>

文件中的根节点即代表一个drawable,内部节点一般为drawable的一些属性,drawable的类型有多种,如下:

1.color

这个是最简单的drawable标签,表示绘制简单颜色背景:

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

如果不指定android:color属性值,则表示背景颜色透明。一般很少通过该方式设置背景颜色,而是直接获取res/values下的@color颜色值:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="black">#000000</color>
</resources>

再设置到控件的android:background属性中:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@color/black" />

2.shape

shape可实现绘制多种形状。我们知道TextView、Button等控件的默认形状都是非圆角矩形,如果要实现类似于圆角矩形背景、圆形背景,那么就需要使用shape:

<!-- 圆角矩形背景 -->
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <!-- 填充的颜色 -->
    <solid android:color="#ff0000" />
    <!-- 设置按钮的四个角为弧形 -->
    <!-- android:radius 弧形的半径 -->
    <corners android:radius="5dp" />

3.selector

selector可以添加一个或多个item子标签,不同的item代表相应的状态,并对此定义不同UI显示效果:

<!-- 圆角矩形背景 -->
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 选中状态 -->
    <item android:state_checked="true" android:drawable="@color/black" />
    <!-- 未选中状态 -->
    <item android:state_checked="false" android:drawable="@color/red" />
</selector>

4.layer-list

layer-list能够实现多个图层叠加,类似于PS的图层功能,最典型的使用例子是为控件画上下分隔线:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!--分隔线-->
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/colorAccent" />
        </shape>
    </item>
    <!--背景,此时绘制上下分隔线-->
    <item android:bottom="2dp"
        android:top="2dp">
        <shape android:shape="rectangle">
            <solid android:color="@android:color/white" />
        </shape>
    </item>
</layer-list>

5.inset

inset能为drawable资源添加内边距,与padding类似,但是padding设置的是控件的内边距,inset设置的是drawable的内边距:

<?xml version="1.0" encoding="utf-8"?>
<!--为drawable添加左内边距和底部内边距-->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@color/colorPrimaryDark"
    android:insetBottom="50dp"
    android:insetLeft="50dp" />

6.level-list

如果想要在同一个控件显示不同的图片,如电池的电量,可使用level-list。在level-list中,可添加多个item,不同的item对应着不同的level的范围值,以及不同的drawable资源。然后我们在代码中,根据不同的情景,通过控件的getDrawable().setLevel(int level),设置level值。这样控件就会根据level值显示对应的drawable内容。

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

    <item android:drawable="@color/colorPrimary"
        android:maxLevel="20"/>

    <item android:drawable="@color/colorPrimaryDark"
        android:maxLevel="30"/>

</level-list>

将控件背景设置为上述drawable,然后在代码通过通过getBackground获取drawable,然后调用drawable的setLevel方法,显示对应的内容:

// 显示level对应的drawable内容
LevelListDrawable levelListDrawable = (LevelListDrawable) textView.getBackground();
levelListDrawable.setLevel(20);
levelListDrawable.setLevel(50);

7.scale

scale能够将drawable进行缩放,通过其scaleWidth和scaleHeight属性,可设置drawable缩放的比例:

<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/ic_launcher_background"
    android:scaleGravity="center"
    android:scaleHeight="50%"
    android:scaleWidth="50%" />

当scaleWidth和scaleHeight为0时,代表不缩放,保持原drawable大小,上述例子代表宽度和高度都缩放50%。
通过在代码中调用getBackground()获取Drawable后,通过setLevel(int level)方法,可控制缩放的程度。

ScaleDrawable scaleDrawable = (ScaleDrawable) textView.getBackground();
scaleDrawable.setLevel(1000);
scaleDrawable.setLevel(2000);

8.clip

使用clip标签可实现对drawable的裁剪,用法与scale类似。通过在代码中调用getBackground()获取Drawable后,通过setLevel(int level)方法,可控制裁剪的程度。因此,十分适合用于制作类似进度条的功能。

<clip xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/black_bg_r5"
    android:gravity="center"
    android:clipOrientation="vertical" />

drawable属性代表要裁剪的目标drawable,gravity属性用于设置裁剪的焦点,clipOrientation用于设置裁剪的方向。
最后在代码中通过getBackground获取drawable,然后调用drawable的setLevel方法,控制裁剪程度

ClipDrawable clipDrawable = (ClipDrawable) textView.getBackground();
clipDrawable.setLevel(1000);
clipDrawable.setLevel(2000);

9.rotate

rotate标签用于对drawable的旋转,用法与scale类似:

<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/black_bg_r5"
    android:pivotX="50%"
    android:pivotY="50%"
    android:fromDegrees="0"
    android:toDegrees="180%" />

drawable属性用于设置旋转的目标drawable,pivotX和pivotY用于设置旋转中心位置,fromDegrees和toDegrees设置旋转的角度范围。
最后在代码中通过调用setLevel方法,控制旋转角度

RotateDrawable rotateDrawable = (RotateDrawable) textView.getBackground();
rotateDrawable.setLevel(200);
rotateDrawable.setLevel(300);

10.transition

transition用于实现drawable过渡渐变的功能,使得控件能够拥有各种各样酷炫的过渡效果:

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

    <item android:drawable="@drawable/bg_color_accent"
        android:id="@+id/bg_accent" />

    <item android:drawable="@drawable/bg_color_primary"
        android:id="@+id/bg_primary" />
    <!-- 该item将会无效,仅支持两个item的过渡效果 -->
    <item android:drawable="@drawable/ic_launcher_background"
        android:id="@+id/bg_ic_launcher" />
</transition>

在transition中,每个item分别代表一个过渡的状态,且仅前两个item的过渡效果有效。将transition设置为控件的背景后,通过控件的getDrawable方法获取Drawable,然后调用drawable的startTransition方法开始过渡效果,该方法仅transition对应的Drawable类才有:

TransitionDrawable transitionDrawable = (TransitionDrawable)textView.getBackground();
transitionDrawable.startTranstion(1000);

其中传入的数值为过渡效果持续的时长,此处的过渡效果持续1秒。

11.adaptive-icon

adaptive-icon为Android O的新特性,旨在与生成“自适应性桌面图标”。我们知道,不同安卓设备的图标UI效果可能有所不同,可能为圆形,方形圆角等形状,adaptive-icon能够自动适应不同设备对启动图标的UI设计。adaptive-icon一般创建在res/mipmap-anydpi中,而不是res/drawable文件夹。

<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

由上述代码可以看出,adaptive-icon将启动图分成了两层,前景层和背景层,而不同设备会根据系统的风格,使用遮罩层对其进行裁剪。在Android Studio中,使用Preview可以查看不同形状下adaptive-icon的效果:


查看不同形状的裁剪效果.png

要应用adaptive-icon,需要在AndroidManifest.xml中,修改application标签的android:icon属性:

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

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:icon="@mipmap/ic_launcher"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
    ...
    </application>
</manifest>

如果要查看更多关于adaptive-icon的内容,可参阅Google adaptive-icon

12.maskable-icon

跟adaptive-icon用法一致,但是经过测试,无法在Preview中显示效果。个人认为该标签仍未被完善,不建议使用。格式语法如下:

<?xml version="1.0" encoding="utf-8"?>
<maskable-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background1" />
    <foreground android:drawable="@drawable/ic_launcher_foreground1" />
</maskable-icon>

使用maskable-icon的方法与adaptive-icon一致:

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

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:icon="@mipmap/ic_launcher1"
        android:roundIcon="@mipmap/ic_launcher_round1"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
    ...
    </application>
</manifest>

13.animated-rotate

animated-rotate的作用是用于制作简单旋转动画,只需简单几句代码就可实现旋转动画,它与rotate的区别在于animated-rotate的旋转是自动播放的,而不是通过代码控制。一般使用animated-rotate来替换ProgressBar默认的旋转图标:

<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/ic_launcher_foreground"
    android:pivotX="50%"
    android:pivotY="50%"
    android:repeatMode="reverse" />

在ProgressBar中使用:

<ProgressBar
        android:id="@+id/iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:indeterminateDrawable="@drawable/bg_rotate" />

14.animation-list

animation-list代表帧动画,可按帧播放一组的drawable图片:

<?xml version="1.0" encoding="utf-8"?>
<!-- oneshot代表只播放一次 -->
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="true">
    <item android:drawable="@drawable/icon1" android:duration="150" />
    <item android:drawable="@drawable/icon2" android:duration="150" />
    <item android:drawable="@drawable/icon3" android:duration="150" />
    <item android:drawable="@drawable/icon4" android:duration="150" />
    <item android:drawable="@drawable/icon5" android:duration="150" />
    <item android:drawable="@drawable/icon6" android:duration="150" />
</animation-list>

要播放动画,需要获取动画对应的Drawable实例,通过调用start方法播放:

// 将animation-list赋给控件
mIvAnimaition.setImageResourse(R.drawable.bg_animation);
// 获取animation-list对应的Drawable实例
AnimationDrawable drawable = (AnimationDrawable) mIvAnimation.getDrawable();
// 播放动画
drawable.start();
// 停止播放动画
drawable.stop();

15.vector

vector代表矢量图,是通过一系列命令组合,绘制出来的图形,该类型的图形可以像普通图片一样被使用。由于vector支持使用dp作为宽高的单位,因此可以根据屏幕进行自适应,因此不用像普通图片一样分别为不同屏幕切图,且其大小比普通图片小,可节省空间资源,vector的内容在path中的pathData属性中绘制:

<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="200dp"
    android:height="200dp"
    android:viewportWidth="100"
    android:viewportHeight="100">

    <group>
        <path
            android:name="path1"
            android:pathData="M20,70L80, 70"
            android:strokeColor="#ffffff"
            android:strokeLineCap="round"
            android:strokeWidth="5" />
        <path
            android:name="path2"
            android:pathData="M20,30L80, 30"
            android:strokeColor="#ffffff"
            android:strokeLineCap="round"
            android:strokeWidth="5" />
    </group>

</vector>

效果图如下:


vector绘制的图片.png

svg格式的图片可直接转换成vector,只要在as中选中mipmap或drawable文件夹,然后点击右键-new-Vector Assets:

svg转vector.png

然后选择Local file,在path那里选中转换的svg格式图片,as就会自动将svg文件装换为vector:
svg转vector.png

你可以去阿里巴巴矢量图下载svg格式的图片,或者使用svg编辑器绘制svg图片(svg编辑器很好找,有许多在线svg编辑网站),然后将绘制或下载好的svg图片转换为vector,就能够在Android中使用了。

16.animated-vector

使用vector可以更好的适应不同的设备,节省资源空间,但是vector的内容都是静态的,不能实现动态效果。那么,该怎么实现动画的效果呢?animated-vector提供了这种可能,animated-vector实现动画的一般思路是,通过objectAnimator修改vector中path的pathData属性的内容,从而实现过渡动画的效果,animated-vector的格式如下:

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

    <target
        android:animation="@animator/animator_vector_path1"
        android:name="path1" />

    <target
        android:animation="@animator/animator_vector_path2"
        android:name="path2" />

</animated-vector>

drawable属性指定了要实现动画效果的vector,每一个target分别对应vector一个path标签,并通过path的name属性进行区分:

<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="200dp"
    android:height="200dp"
    android:viewportWidth="100"
    android:viewportHeight="100">

    <group>
        <path
            android:name="path1"
            android:pathData="M20,70L80, 70"
            android:strokeColor="#ffffff"
            android:strokeLineCap="round"
            android:strokeWidth="5" />
        <path
            android:name="path2"
            android:pathData="M20,30L80, 30"
            android:strokeColor="#ffffff"
            android:strokeLineCap="round"
            android:strokeWidth="5" />
    </group>

</vector>

animator_vector_path1和animator_vector_path2都是objectAnimator,旨在与修改pathData的内容:
animator_vector_path1.xml

<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="500"
    android:propertyName="pathData"
    android:valueType="pathType"
    android:valueFrom="M20,70L80, 70"
    android:valueTo="M20,70L80, 30" />

animator_vector_path2.xml

<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="500"
    android:propertyName="pathData"
    android:valueType="pathType"
    android:valueFrom="M20,30L80, 30"
    android:valueTo="M20,30L80, 70" />

这样,animated-vector就创建成功了,现在只要把animated-vector设置在控件,如作为资源显示在ImageView中:

<ImageView
        android:id="@+id/iv_vector"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bg_animated_vector"
        android:background="@android:color/black" />

然后在代码中通过控件获取animated-vector对应的实例,并调用实例的start()方法,即可播放动画:

((AnimatedVectorDrawable)(ivImage.getDrawable())).start();

效果如下:


animated-vector.gif

注意使用animated-vector需要设置minSdkVersion不小于21,否则可能会报错。

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

推荐阅读更多精彩内容

  • Android有很多种drawable类型,除了前几篇详细讲解的shape、selector、layer-list...
    骑着老鼠追猫咪阅读 781评论 0 2
  • 转载自Keegan小钢并标明原文链接:http://keeganlee.me/post/android/20150...
    坚持编程_lyz阅读 1,109评论 0 1
  • 概述 今天我们来探究一下android的样式。其实,几乎所有的控件都可以使用 background属性去引用自定义...
    CokeNello阅读 4,806评论 1 19
  • 记得刚开始学Android时,看着自己完全用系统控件写出的不忍直视的界面,对于如何做出不一样的按钮,让它们在不同状...
    biloba阅读 1,692评论 1 11
  • 哪怕到了这个点,武昌到汉口的路依然排着看不到头的长队,走着追上前面没看到我的出租车,一口已经很熟悉的方言对我...
    老苍的浮生阅读 260评论 0 0