材料設計主題對畫布的支持

原文地址: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
相關文章
相關標籤/搜索