Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android中的SVG圖像的各個屬性意義

android中的SVG圖像的各個屬性意義

編輯:關於Android編程

android中的矢量圖,一個矢量圖中的各個屬性是什麼意義(只關注重要的屬性)

    標簽,並給它們設置一些共同的屬性
        android:name="group_name"   //這個name很有用,在設置objectAnimator的時候用來區分給那個部分施加動畫
        android:pivotY="50"     //這個設置這個group的中心點的X坐標,取值范圍為0到100,在做rotation時有用
        android:pivotX="50"     //這個設置這個group的中心點的Y坐標,取值范圍為0到100,在做rotation時有用
        android:translateX="20" //將整個group在X軸方向平移多少像素
        android:translateY="30" //將整個group在Y軸方向平移多少像素
        android:rotation="90"   //將整個group以中心點左邊旋轉的角度,360為一圈
        android:scaleX="0.5"    //橫坐標的縮放比例 , 取值1表示100%
        android:scaleY="0.3">   //縱坐標的縮放比例,取值0.5表示50%,取值1.5表示150%

        
    

配圖

鑒於

android:trimPathStart

android:trimPathEnd

android:trimPathOffset

三個屬性比較難懂,特地配了三個圖片來表示下


android:trimPathStart="0.1"

此圖表示從path的0%開始去除掉0%位置到10%位置的path

trimPathStart


android:trimPathStart="0.1"
android:trimPathOffset="0.5"

此圖表示,先把path的原點移動到50%的位置,再以此為原點去除掉0%位置到10%位置的path

trimPathStart和trimPathOffset


android:trimPathEnd="0.9"
android:trimPathOffset="0.5"

此圖表示,先把path的原點移動到50%的位置,再以此為原點去除掉90%位置到100%位置的path

trimPathEnd和trimPathOffset

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved