Android 의 AnimationDrawable 단순 시 뮬 레이 션 동적 그림

Drawable animation 은 Drawable 자원 을 불 러 와 프레임 애니메이션 을 실현 할 수 있 습 니 다.Animation Drawable 은 Drawable animations 를 실현 하 는 기본 클래스 입 니 다. 
여기 서 Animation Drawable 로 동적 그림 의 실현 을 간단하게 모 의 합 니 다.
fragment_주 레이아웃 파일  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 레이아웃 파일  ----  애니메이션 구현
XML 파일 의 방법 으로 Drawable 애니메이션 을 구현 하 는 것 을 추천 합 니 다.코드 에서 구현 하 는 것 을 추천 하지 않 습 니 다.이 XML 파일 은 프로젝트 의 res/drawable/디 렉 터 리 에 저 장 됩 니 다.XML 파일 의 명령(즉 속성)은 애니메이션 재생 순서 와 시간 간격 입 니 다.

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
  <!-- onshot             -->
  
  <!-- duration        -->
  <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);
    //         
    AnimationDrawable background = (AnimationDrawable) ivFrame
        .getBackground();
    //     
    background.start();
    //     .
    // background.stop();
  }

}

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기