xml檔案定義動畫 補間動畫 常用

2021-07-02 07:29:08 字數 1186 閱讀 5605

1.      在res目錄下建立乙個資料夾file,在資料夾下建立乙個xml檔案(new android xml file),選擇型別

alpha: 透明

使用方法:

animation aa = animationutils.loadanimation(this, r.anim.alpha);

iv.startanimation(aa);

trans:位移

<?xml version="1.0" encoding="utf-8"?>

使用:

animation ta = animationutils.loadanimation(this, r.anim.trans);

iv.startanimation(ta);

scale:縮放

<?xml version="1.0" encoding="utf-8"?>

使用:

animation sa = animationutils.loadanimation(this, r.anim.scale);

iv.startanimation(sa);

rotate:旋轉

<?xml version="1.0" encoding="utf-8"?>

使用:    

animation ra = animationutils.loadanimation(this, r.anim.rotate);

iv.startanimation(ra);

set:集合

<?xml version="1.0" encoding="utf-8"?>

使用:

animation set = animationutils.loadanimation(this, r.anim.set);

iv.startanimation(set);

1.動畫詳解:    

動畫 補間動畫

translateanimation 平移動畫 1.1靜態實現 1.1.1 res anim在該資料夾中建立動畫的xml資源檔案 動畫資源檔案中設定xy方向上的距離時,可以設定畫素值,也可以設定百分比 translate xmlns android android fromxdelta 0 andr...

Android筆記 xml補間動畫

fromalpha開始透明度 toalpha結束透明度 fillafter與fillbefore指定最終是與開始還是結束樣式相同 android pivoty 50 相對於自身 寫成android pivoty 50 p 則是相對于父容器 1res下新建anim資料夾 animation縮寫 new...

android動畫之補間動畫

補間動畫 移動補間動畫,縮放補間動畫,旋轉補間動畫,透明補間動畫 1.移動補間動畫 translateanimation 指定移動的絕對位置 以自己的左上角為參照點 translateanimation translateanimation new translateanimation 0,0,0,...