原文地址:http://developer.android.com/training/material/drawables.html html
使用材料设计后画布支持一下功能:android
一、画布着色canvas
二、突出颜色提取spa
三、矢量图设计
图片着色
code
在android5.0之后,你能够给图片和.9图片定义透明标志xml
从图片中提取颜色
htm
v7包提供了Palette类,能从图片中提取颜色,这个类能提取一下突出颜色:图片
Vibrantget
Vibrant dark
Vibrant light
Muted
Muted dark
Muted light
在android5.0之后,能够定义一个矢量图,在比例变化的时候不会失真。你须要一个asset文件的矢量图片,而不须要针对不一样屏幕的一组图片,定义矢量图须要在xml中插入vector元素
<!-- res/drawable/heart.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
<!-- intrinsic size of the drawable -->
android:height="256dp"
android:width="256dp"
<!-- size of the virtual canvas -->
android:viewportWidth="32"
android:viewportHeight="32">
<!-- draw a path -->
<path android:fillColor="#8fff"
android:pathData="M20.5,9.5
c-1.955,0,-3.83,1.268,-4.5,3
c-0.67,-1.732,-2.547,-3,-4.5,-3
C8.957,9.5,7,11.432,7,14
c0,3.53,3.793,6.257,9,11.5
c5.207,-5.242,9,-7.97,9,-11.5
C25,11.432,23.043,9.5,20.5,9.5z" />
</vector