材料设计主题对画布的支持

原文地址:http://developer.android.com/training/material/drawables.html

使用材料设计后画布支持一下功能:

1、画布着色

2、突出颜色提取

3、矢量图

图片着色

在android5.0以后,你可以给图片和.9图片定义透明标志

从图片中提取颜色

v7包提供了Palette类,能从图片中提取颜色,这个类能提取一下突出颜色:

  • Vibrant

  • 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

你可能感兴趣的:(材料设计主题对画布的支持)