亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android 逐幀動畫創建實例詳解

發布時間:2020-10-02 05:49:25 來源:腳本之家 閱讀:156 作者:lqh 欄目:移動開發

Android 逐幀動畫創建實例詳解

前言:

我們看早期電影的時候,電影通常是一張一張播放,用我們現在專有名詞來說,就是一幀幀來,安卓同樣有這樣動畫效果的編排形式。

那么我們先定義逐幀動畫xml文件

<?xml version="1.0" encoding="utf-8"?> 
<animation-list 
  xmlns:android="http://schemas.android.com/apk/res/android" 
  android:oneshot="true"> 
 
  <item 
    android:drawable="@drawable/pic1" 
    android:duration="200" /> 
  <item 
    android:drawable="@drawable/pic2" 
    android:duration="200" /> 
  <item 
    android:drawable="@drawable/pic3" 
    android:duration="200" /> 
  <item 
    android:drawable="@drawable/pic4" 
    android:duration="200" /> 
  <item 
    android:drawable="@drawable/pic5" 
    android:duration="200" /> 
  <item 
    android:drawable="@drawable/pic6" 
    android:duration="200" /> 
  <item 
    android:drawable="@drawable/pic7" 
    android:duration="200" /> 
   <item 
    android:drawable="@drawable/pic8" 
    android:duration="200" /> 
   <item 
    android:drawable="@drawable/pic8" 
    android:duration="200" /> 
    
 
 
</animation-list> 

main.xml

<ImageView 
    android:id="@+id/pic" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentTop="true" 
    android:layout_marginLeft="98dp" 
    android:layout_marginTop="69dp" 
     /> 
 
  <Button 
    android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true" 
    android:layout_marginBottom="54dp" 
    android:layout_marginLeft="98dp" 
    android:onClick="startMovie" 
    android:text="開始播放電影" /> 
 

Activiy代碼:

public class MyAnimationDemo extends Activity { 
 
  private AnimationDrawable draw=null; 
  private ImageView image; 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_my_animation_demo); 
    image=(ImageView)super.findViewById(R.id.pic); 
  } 
 
  public void startMovie(View v){ 
    image.setBackgroundResource(R.anim.oldvideo);//第一步,設置圖片資源 
    draw=(AnimationDrawable)image.getBackground();//取得圖片背景的Drawable 
    draw.setOneShot(false);//動畫執行次數 
    draw.start();//開始動畫 
     
  } 
 
} 
 

這里我們看到,

第一步,設置圖片背景資源

第二步,設置得到圖片背景的draw

第三步,設置draw參數,并start()

實現效果如下,間隔0.2秒即換圖,實現老電影動畫效果

Android 逐幀動畫創建實例詳解

Android 逐幀動畫創建實例詳解

Android 逐幀動畫創建實例詳解
 

 以上就是Android 逐幀動畫的實例詳解,如有疑問請留言或到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇安县| 樟树市| 南充市| 会同县| 贵德县| 马龙县| 永州市| 北安市| 达拉特旗| 容城县| 门头沟区| 屯昌县| 吉隆县| 康平县| 册亨县| 东城区| 庆安县| 西林县| 镇安县| 五大连池市| 麻栗坡县| 盐城市| 自治县| 正宁县| 漾濞| 青铜峡市| 保定市| 资讯| 许昌县| 孝昌县| 双牌县| 海宁市| 龙井市| 四子王旗| 玉环县| 淳化县| 邵阳县| 乐平市| 额尔古纳市| 元江| 沭阳县|