重點
- 向量可繪項目是 XML 檔案中定義的向量圖形,是由一組點、線、曲線以及相關色彩資訊所組成。
- 向量可繪項目可縮放,也就是說,您可以調整大小,而不會影響顯示品質。這類檔案可縮減 APK 檔案大小並提升效能,因此非常適合用於 Android 應用程式。
- 您可以在 Android Studio 中建立向量可繪項目,方法是在專案中的「drawable」資料夾上按一下滑鼠右鍵,然後依序選取「New」>「Vector Asset」。您也可以將 SVG 檔案匯入 Android Studio 做為向量可繪項目。
簡介
VectorDrawable
是 XML 檔案中定義的向量圖形,由一組點、線、曲線以及相關色彩資訊所組成。使用向量可繪項目的主要優點是可放大圖片。可縮放而不會降低顯示品質,也就是說,系統可根據不同的螢幕密度重新調整同一檔案的尺寸,既不會造成影像品質下降,也不需額外的檔案。這樣一來,APK 檔案就會變小,開發人員也能減少維護工作。您也可以使用多個 XML 檔案,而非為每個顯示解析度使用多個圖片,藉此使用向量圖片製作動畫。
本網頁和以下影片概述瞭如何在 XML 中建立向量可繪項目。Android Studio 也可以將 SVG 檔案轉換為向量可繪格式,如「新增多種密度的向量圖形」一文所述。
Android 5.0 (API 級別 21) 是第一個正式支援向量可繪項目的版本,可使用 VectorDrawable
和 AnimatedVectorDrawable
,但您可以透過 Android 支援資料庫支援舊版,該資料庫提供 VectorDrawableCompat
和 AnimatedVectorDrawableCompat
類別。
關於 VectorDrawable 類別
VectorDrawable
會定義靜態可繪項目物件。與 SVG 格式類似,每個向量圖形都會定義為樹狀階層,由 path
和 group
物件組成。每個 path
都包含物件輪廓的幾何圖形,而 group
則包含轉換的詳細資料。所有路徑都會按照 XML 檔案中的順序繪製。
Vector Asset Studio 工具提供簡單的方式,可將向量圖形做為 XML 檔案新增至專案。
XML 範例
以下是 VectorDrawable
XML 檔案範例,可算繪充電模式中的電池圖片。
<!-- res/drawable/battery_charging.xml --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24.0" android:viewportHeight="24.0"> <group android:name="rotationGroup" android:pivotX="10.0" android:pivotY="10.0" android:rotation="15.0" > <path android:name="vect" android:fillColor="#FF000000" android:pathData="M15.67,4H14V2h-4v2H8.33C7.6,4 7,4.6 7,5.33V9h4.93L13,7v2h4V5.33C17,4.6 16.4,4 15.67,4z" android:fillAlpha=".3"/> <path android:name="draw" android:fillColor="#FF000000" android:pathData="M13,12.5h2L11,20v-5.5H9L11.93,9H7v11.67C7,21.4 7.6,22 8.33,22h7.33c0.74,0 1.34,-0.6 1.34,-1.33V9h-4v3.5z"/> </group> </vector>
這個 XML 會算繪下列圖片:
關於 AnimatedVectorDrawable 類別
AnimatedVectorDrawable
會為向量圖形的屬性新增動畫。您可以將動畫向量圖形定義為三個獨立的資源檔案,也可以定義為單一 XML 檔案,以定義整個可繪項目。讓我們一起來瞭解這兩種方法:多個 XML 檔案和單一 XML 檔案。
多個 XML 檔案
使用這種方法,您可以定義三個獨立的 XML 檔案:
VectorDrawable
XML 檔案。-
AnimatedVectorDrawable
XML 檔案,用於定義目標VectorDrawable
、動畫的目標路徑和群組、屬性,以及定義為ObjectAnimator
物件或AnimatorSet
物件的動畫。 - Animator XML 檔案。
多個 XML 檔案的範例
以下 XML 檔案示範向量圖形的動畫。
- VectorDrawable 的 XML 檔案:
vd.xml
-
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="64dp" android:width="64dp" android:viewportHeight="600" android:viewportWidth="600" > <group android:name="rotationGroup" android:pivotX="300.0" android:pivotY="300.0" android:rotation="45.0" > <path android:name="vectorPath" android:fillColor="#000000" android:pathData="M300,70 l 0,-70 70,70 0,0 -70,70z" /> </group> </vector>
- AnimatedVectorDrawable 的 XML 檔案:
avd.xml
-
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" android:drawable="@drawable/vd" > <target android:name="rotationGroup" android:animation="@anim/rotation" /> <target android:name="vectorPath" android:animation="@anim/path_morph" /> </animated-vector>
- 在 AnimatedVectorDrawable 的 XML 檔案中使用的動畫工具 XML 檔案:
rotation.xml
和path_morph.xml
-
<objectAnimator android:duration="6000" android:propertyName="rotation" android:valueFrom="0" android:valueTo="360" />
<set xmlns:android="http://schemas.android.com/apk/res/android"> <objectAnimator android:duration="3000" android:propertyName="pathData" android:valueFrom="M300,70 l 0,-70 70,70 0,0 -70,70z" android:valueTo="M300,70 l 0,-70 70,0 0,140 -70,0 z" android:valueType="pathType"/> </set>
單一 XML 檔案
使用這種方法,您可以透過 XML 套件格式,將相關 XML 檔案合併為單一 XML 檔案。在建構應用程式時,aapt
標記會建立個別資源,並在動畫向量中參照這些資源。這個方法需要建構工具 24 以上版本,且輸出內容具有回溯相容性。
單一 XML 檔案範例
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"> <aapt:attr name="android:drawable"> <vector android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:name="root" android:strokeWidth="2" android:strokeLineCap="square" android:strokeColor="?android:colorControlNormal" android:pathData="M4.8,13.4 L9,17.6 M10.4,16.2 L19.6,7" /> </vector> </aapt:attr> <target android:name="root"> <aapt:attr name="android:animation"> <objectAnimator android:propertyName="pathData" android:valueFrom="M4.8,13.4 L9,17.6 M10.4,16.2 L19.6,7" android:valueTo="M6.4,6.4 L17.6,17.6 M6.4,17.6 L17.6,6.4" android:duration="300" android:interpolator="@android:interpolator/fast_out_slow_in" android:valueType="pathType" /> </aapt:attr> </target> </animated-vector>
向量可繪項目的回溯相容性解決方案
如要在搭載 Android 5.0 (API 級別 21) 以下平台版本的裝置上支援向量可繪項目和動畫向量可繪項目,或使用 Android 7.0 (API 級別 24) 以下的 fillColor
、fillType
和 strokeColor
功能,請分別透過兩個支援程式庫 support-vector-drawable
和 animated-vector-drawable
使用 VectorDrawableCompat
和 AnimatedVectorDrawableCompat
。
Android Studio 1.4 在建構期間產生 PNG 檔案,為向量可繪項目提供有限的相容性支援。不過,向量可繪項目和動畫向量可繪項目支援的資料庫提供彈性和廣泛的相容性,因為它是支援資料庫,因此您可以將其與所有 Android 平台版本 (回溯至 Android 2.1 (API 級別 7 以上)) 搭配使用。如要將應用程式設為使用向量支援資料庫,請將 vectorDrawables
元素新增至應用程式模組中的 build.gradle
檔案。
請使用下列程式碼片段設定 vectorDrawables
元素:
Groovy
// For Gradle Plugin 2.0+ android { defaultConfig { vectorDrawables.useSupportLibrary = true } }
Kotlin
// For Gradle Plugin 2.0+ android { defaultConfig { vectorDrawables.useSupportLibrary = true } }
Groovy
// For Gradle Plugin 1.5 or below android { defaultConfig { // Stops the Gradle plugin’s automatic rasterization of vectors generatedDensities = [] } // Flag notifies aapt to keep the attribute IDs around aaptOptions { additionalParameters "--no-version-vectors" } }
Kotlin
// For Gradle Plugin 1.5 or below android { defaultConfig { // Stops the Gradle plugin’s automatic rasterization of vectors generatedDensities() } // Flag notifies aapt to keep the attribute IDs around aaptOptions { additionalParameters("--no-version-vectors") } }
您可以在搭載 Android 4.0 (API 級別 14) 以上版本的所有裝置上使用 VectorDrawableCompat
和 AnimatedVectorDrawableCompat
。Android 載入可繪項目的方式,並非每個接受可繪項目 ID 的地點 (例如 XML 檔案) 都支援載入向量可繪項目。android.support.v7.appcompat
套件新增了多個地圖項目,方便您使用向量可繪項目。首先,當您使用 android.support.v7.appcompat
套件搭配 ImageView
或 ImageButton
和 FloatingActionButton
等子類別時,可以使用新的 app:srcCompat
屬性參照向量可繪項目,以及 android:src
可用的任何其他可繪項目:
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" app:srcCompat="@drawable/ic_add" />
如要在執行階段變更可繪項目,您可以使用前述的 setImageResource()
方法。使用 AppCompat
和 app:srcCompat
是將向量可繪項目整合至應用程式最可靠的方法。
支援資料庫 25.4.0 以上版本支援下列功能:
- 路徑轉換 (PathType 評估器) 用於將一個路徑轉換為另一個路徑。
- 路徑內插:用於定義彈性內插器 (以路徑表示),而非系統定義的內插器 (例如 LinearInterpolator)。
支援資料庫 26.0.0-beta1 以上版本支援下列功能:
- 沿著路徑移動 幾何物件可沿著任意路徑移動,做為動畫的一部分。
使用支援資料庫的多個 XML 檔案範例
以下 XML 檔案示範使用多個 XML 檔案為向量圖形製作動畫的方法。
- VectorDrawable 的 XML 檔案:
vd.xml
-
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="64dp" android:width="64dp" android:viewportHeight="600" android:viewportWidth="600" > <group android:name="rotationGroup" android:pivotX="300.0" android:pivotY="300.0" android:rotation="45.0" > <path android:name="vectorPath" android:fillColor="#000000" android:pathData="M300,70 l 0,-70 70,70 0,0 -70,70z" /> </group> </vector>
- 動畫向量 Drawable 的 XML 檔案:
avd.xml
-
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" android:drawable="@drawable/vd" > <target android:name="rotationGroup" android:animation="@anim/rotation" /> </animated-vector>
- 在 AnimatedVectorDrawable 的 XML 檔案中使用的 Animator XML 檔案:
rotation.xml
-
<objectAnimator android:duration="6000" android:propertyName="rotation" android:valueFrom="0" android:valueTo="360" />
單一 XML 檔案
以下 XML 檔案示範使用單一 XML 檔案為向量圖形製作動畫的方法。在建構應用程式時,aapt
標記會建立個別資源,並在動畫向量中參照這些資源。這個方法需要使用 Build Tools 24 以上版本,且輸出內容可回溯相容。
使用支援資料庫的單一 XML 檔案範例
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"> <aapt:attr name="android:drawable"> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="64dp" android:height="64dp" android:viewportWidth="600" android:viewportHeight="600"> <group android:name="rotationGroup" android:pivotX="300" android:pivotY="300" android:rotation="45.0" > <path android:name="vectorPath" android:fillColor="#000000" android:pathData="M300,70 l 0,-70 70,70 0,0 -70,70z" /> </group> </vector> </aapt:attr> <target android:name="rotationGroup"> <aapt:attr name="android:animation"> <objectAnimator android:propertyName="rotation" android:valueFrom="0" android:valueTo="360" android:duration="6000" android:interpolator="@android:interpolator/fast_out_slow_in" /> </aapt:attr> </target> </animated-vector>