什麼是Vector Drawable?它與PNG有什麼不同?是否可以將PNG轉換爲Android中的矢量Drawable?Vector Drawable VS PNG
以下是我在Studio中創建的一個矢量Drawable。
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FF000000"
android:pathData="M22,16V4c0,-1.1 -0.9,-2 -2,-2H8c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2zm-11,-4l2.03,2.71L16,11l4,5H8l3,-4zM2,6v14c0,1.1 0.9,2 2,2h14v-2H4V6H2z" /> </vector>
這是什麼路徑數據?我怎樣才能獲得PNG?
http://developer.android.com/intl/es/reference/android/graphics/drawable/VectorDrawable.html查看這一個 – Abhishek