欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android之AnimationDrawable簡(jiǎn)單模擬動(dòng)態(tài)圖

 更新時(shí)間:2016年09月02日 15:11:26   作者:西門(mén)吃雪  
這篇文章主要為大家詳細(xì)介紹了Android之AnimationDrawable簡(jiǎn)單模擬動(dòng)態(tài)圖的實(shí)現(xiàn)代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

Drawable animation可以加載Drawable資源實(shí)現(xiàn)幀動(dòng)畫(huà)。AnimationDrawable是實(shí)現(xiàn)Drawable animations的基本類(lèi)。 

這里用AnimationDrawable 簡(jiǎn)單模擬動(dòng)態(tài)圖的實(shí)現(xiàn)。

fragment_main 布局文件 ----  只需要放一個(gè) ImageView即可

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context="com.yztc.frameanimation.MainActivity" >

  <ImageView
    android:id="@+id/iv_frame"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:background="@drawable/girl_and_boy" />

</RelativeLayout>

girl_and_boy 布局文件  ----  實(shí)現(xiàn)動(dòng)畫(huà)

推薦用XML文件的方法實(shí)現(xiàn)Drawable動(dòng)畫(huà),不推薦在代碼中實(shí)現(xiàn)。這種XML文件存放在工程中res/drawable/目錄下。XML文件的指令(即屬性)為動(dòng)畫(huà)播放的順序和時(shí)間間隔。

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
  <!-- onshot 屬性表示動(dòng)畫(huà)只執(zhí)行一次 -->
  
  <!-- duration 表示持續(xù)時(shí)間 -->
  <item
    android:drawable="@drawable/girl_1"
    android:duration="200">
  </item>
  <item
    android:drawable="@drawable/girl_2"
    android:duration="200">
  </item>
  <item
    android:drawable="@drawable/girl_3"
    android:duration="200">
  </item>
  <item
    android:drawable="@drawable/girl_4"
    android:duration="200">
  </item>
  <item
    android:drawable="@drawable/girl_5"
    android:duration="300">
  </item>
  <item
    android:drawable="@drawable/girl_6"
    android:duration="400">
  </item>
  <item
    android:drawable="@drawable/girl_7"
    android:duration="500">
  </item>
  <item
    android:drawable="@drawable/girl_8"
    android:duration="400">
  </item>
  <item
    android:drawable="@drawable/girl_9"
    android:duration="300">
  </item>
  <item
    android:drawable="@drawable/girl_10"
    android:duration="200">
  </item>
  <item
    android:drawable="@drawable/girl_11"
    android:duration="200">
  </item>

</animation-list>

MainActivity 

package com.dragon.android.initgif;

import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.widget.ImageView;

public class MainActivity extends Activity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.fragment_main);

    ImageView ivFrame = (ImageView) findViewById(R.id.iv_frame);
    // 得到一個(gè)動(dòng)畫(huà)圖片
    AnimationDrawable background = (AnimationDrawable) ivFrame
        .getBackground();
    // 開(kāi)始播放
    background.start();
    // 停止方法.
    // background.stop();
  }

}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論