国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

矢量圖形SVG&高級動畫

2019-11-06 09:44:59
字體:
來源:轉載
供稿:網友
前言          SVG,全名Scalable Vector Graphics可伸縮矢量圖形,這種圖像格式在前端已經是非常廣泛了,矢量圖像:SVG是W3C退出的一種開放標準的文本格式的矢量圖形描述語言,他也是基于xml的、專門為網絡而設計的圖像格式,SVG是一種采用XML來描述而為圖形的語言,所以它可以直接打開xml文件來修改和編輯位圖圖像:位圖圖像的存儲單位是圖像上每一點的像素值,因而文件會比較大,像GIF、JPEG、PNG等都是位圖圖像格式   

SVG的語法                M = moveto(M X,Y) :將畫筆移動到指定的坐標位置,相當于 android Path 里的moveTo()                L = lineto(L X,Y) :畫直線到指定的坐標位置,相當于 android Path 里的lineTo()                H = horizontal lineto(H X):畫水平線到指定的X坐標位置                 V = vertical lineto(V Y):畫垂直線到指定的Y坐標位置                 C = curveto(C X1,Y1,X2,Y2,ENDX,ENDY):三次貝賽曲線                 S = smooth curveto(S X2,Y2,ENDX,ENDY) 同樣三次貝塞爾曲線,更平滑                 Q = quadratic Belzier curve(Q X,Y,ENDX,ENDY):二次貝賽曲線                 T = smooth quadratic Belzier curveto(T ENDX,ENDY):映射 同樣二次貝塞爾曲線,更平滑                A = elliptical Arc(A RX,RY,XROTATION,FLAG1,FLAG2,X,Y):弧線 ,相當于arcTo()                Z = closepath():關閉路徑(會自動繪制鏈接起點和終點)

Part 1、基本用法          Vector在Android中指代的是Vector Drawable,也就是Android中的矢量圖。Vector圖像剛發布的時候,只支持Android5.0+的,自從AppCompat 23.2之后,Vector可以使用于Android2.1以上的所有系統,只需要引用com.android.support:appcompat-v7:23.2.0以上的版本就可以了。但是這里的兼容并非真實的兼容,而是在低版本中生成PNG圖片來替代SVG
<vector xmlns:android="http://schemas.android.com/apk/res/android"    android:width="200dp"    android:height="200dp"    android:viewportHeight="500"    android:viewportWidth="500">    <path        android:name="square"        android:fillColor="#000000"        android:pathData="M100,100 L400,100 L400,400 L100,400 z"/></vector>

tips:

1、android:width/android:height : 矢量圖形的大小

2、android:viewportwidth/android:viewportheight : 定義圖像被劃分的比例大小,例如例子中的500,即把200dp大小的圖像劃分成500份

Vector Drawable相對于普通的Drawable來說,有以下幾個好處:        (1)Vector圖像可以自動進行適配,不需要通過分辨率來設置不同的圖片。        (2)Vector圖像可以大幅減少圖像的體積,同樣一張圖,用Vector來實現,可能只有PNG的幾十分之一。        (3)使用簡單,很多設計工具,都可以直接導出SVG圖像,從而轉換成Vector圖像 功能強大。

        (4)不用寫很多代碼就可以實現非常復雜的動畫 成熟、穩定,前端已經非常廣泛的進行使用了。

下面推薦幾個網址

SVG編輯器:http://editor.method.ac/

將SVG文件轉化為VectorDrawable xml文件:http://inloop.github.io/svg2android/

眾多SVG的圖片:http://www.flaticon.com/

效果~

似乎看上去很簡單,但當你要使用兼容矢量圖的時候需要在build.gradle文件添加

//在gradle2.0及以上:android {  defaultConfig {  vectorDrawables.useSupportLibrary = true}}//在gradle 1.5以前android {  defaultConfig {    // Stops the Gradle plugin’s automatic rasterization of vectors    generatedDensities = []  }  // Flag to tell aapt to keep the attribute ids around  aaptOptions {    additionalParameters "--no-version-vectors"  }}這里只能用于AppCompatImageView或者AppCompatImageButton或其子類,而且必須在app:srcCompat標簽中,如果你要使用TextView、Button的話就會報錯,需要將圖片依附于StateListDrawable,InsetDrawable,LayerDrawable,LevelListDrawable,RotateDrawable進行顯示

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android">    <item android:drawable="@drawable/chick"/></selector>在23.4.0之后需要手動開啟

static {  AppCompatDelegate.setCompatVectorFromSourcesEnabled(true);}這樣便能在TextView、Button使用兼容的矢量圖了

    <android.support.v7.widget.AppCompatTextView        android:layout_width="150dp"        android:layout_height="150dp"        android:drawableLeft="@drawable/chick"/>接下來說一下VectorDrawable的性能問題:

        1)當Vector比較簡單時,其效率是一定比Bitmap高的,所以,為了保證Vector的高效率,Vector需要更加簡單,PathData更加標準、精簡,當Vector圖像變得非常復雜時,就需要使用Bitmap來代替了        2)Vector適用于ICON、Button、ImageView的圖標等小的ICON,或者是需要的動畫效果,由于Bitmap在GPU中有緩存功能,而Vector并沒有,所以Vector圖像不能做頻繁的重繪        3)Vector圖像過于復雜時,不僅僅要注意繪制效率,初始化效率也是需要考慮的重要因素

Part 2、SVG的高級動畫

效果~

tips:

1、畫出相應圖形

<vector xmlns:android="http://schemas.android.com/apk/res/android"        android:width="150dp"        android:height="24dp"        android:viewportHeight="24"        android:viewportWidth="150">    <path        android:name="search"        android:pathData="M141,17 A9,9 0 1,1 142,16 L149,23"        android:strokeAlpha="0.8"        android:strokeColor="#00FF00"        android:strokeLineCap="round"        android:strokeWidth="4"/>    <path        android:name="bar"        android:pathData="M0,23 L149,23"        android:strokeAlpha="0.8"        android:strokeColor="#7700FF00"        android:strokeLineCap="square"        android:strokeWidth="4"/></vector>2、設置animated-vector動畫

<animated-vector    xmlns:android="http://schemas.android.com/apk/res/android"    android:drawable="@drawable/searchbar">    <target        android:name="search"        android:animation="@animator/anim_searchbar_in"/>    <target        android:name="bar"        android:animation="@animator/anim_searchbar_out"/></animated-vector>這里target的name值指代著圖形path的name值

3、為每個path設置動畫

anim_searchbar_in

<objectAnimator    xmlns:android="http://schemas.android.com/apk/res/android"    android:duration="1000"    android:PRopertyName="trimPathStart"    android:repeatCount="infinite"    android:repeatMode="reverse"    android:valueFrom="0"    android:valueTo="1"    android:valueType="floatType"/>anim_searchbar_out

<objectAnimator    xmlns:android="http://schemas.android.com/apk/res/android"    android:duration="1000"    android:propertyName="trimPathStart"    android:repeatCount="infinite"    android:repeatMode="reverse"    android:valueFrom="1"    android:valueTo="0"    android:valueType="floatType"/>效果~

可以仿照上面來定義自己的SVG動畫

效果~

tips:

1、定義圖形

<?xml version="1.0" encoding="utf-8"?><vector xmlns:android="http://schemas.android.com/apk/res/android"    android:viewportWidth="400"    android:viewportHeight="400"    android:width="300px"    android:height="300px">    <group android:name="star_group"        android:pivotX="200"        android:pivotY="200"        android:scaleX="1.0"        android:scaleY="1.0">        <path            android:name="star"            android:fillColor="#FF00FF"            android:pathData="M 200.30535,69.729172            C 205.21044,69.729172 236.50709,141.52218 240.4754,144.40532            C 244.4437,147.28846 322.39411,154.86809 323.90987,159.53312            C 325.42562,164.19814 266.81761,216.14828 265.30186,220.81331            C 263.7861,225.47833 280.66544,301.9558 276.69714,304.83894            C 272.72883,307.72209 205.21044,268.03603 200.30534,268.03603            C 195.40025,268.03603 127.88185,307.72208 123.91355,304.83894            C 119.94524,301.9558 136.82459,225.47832 135.30883,220.8133            C 133.79307,216.14828 75.185066,164.19813 76.700824,159.53311            C 78.216581,154.86809 156.16699,147.28846 160.13529,144.40532            C 164.1036,141.52218 195.40025,69.729172 200.30535,69.729172 z"/>    </group></vector>這里的group標簽的作用:1、對Path進行分組,由于我們后面需要針對Path進行動畫,所以可以讓具有同樣動畫效果的Path在同一個Group中。2、拓展動畫效果,單個的path標簽是沒有translateX和translateY屬性的,因此無法使用屬性動畫來控制path translateY,而group標簽是有的,所以我們需要先將相關的path標簽元素包裹在一個個的group標簽中。

2、設置animated-vector動畫

<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"                 android:drawable="@drawable/vd_star" >    <target        android:name="star_group"        android:animation="@animator/star_rotate" />    <target        android:name="star"        android:animation="@animator/star_shap" /></animated-vector>


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 余干县| 乐至县| 崇仁县| 信丰县| 信阳市| 镇坪县| 耿马| 宣城市| 达孜县| 策勒县| 巴彦淖尔市| 平山县| 虎林市| 开化县| 铁岭市| 汪清县| 武强县| 涞水县| 香格里拉县| 利川市| 南通市| 临猗县| 仙游县| 洛扎县| 澳门| 庆安县| 依兰县| 赤水市| 锦州市| 枞阳县| 明光市| 奉贤区| 昭苏县| 措勤县| 扶沟县| 黔西| 阳曲县| 江西省| 横山县| 宜兰县| 宁河县|