개발은 하는건가..

Android 애니메이션 drawable 본문

Java, Android

Android 애니메이션 drawable

수동애비 2022. 6. 14. 11:05
반응형

 

Drawable 에 xml 을 생성하고 다음과 같이 이미지와 duration 을 지정해준다.

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false" >

    <item
        android:drawable="@drawable/sc04_04_gif_call04_04"
        android:duration="300"/>
    <item
        android:drawable="@drawable/sc04_04_gif_call02_01"
        android:duration="300"/>
    <item
        android:drawable="@drawable/sc04_04_gif_call02_02"
        android:duration="300"/>
    <item
        android:drawable="@drawable/sc04_04_gif_call03_03"
        android:duration="500"/>

</animation-list>

 

만들어진 drawable xml 은  ImageView 에 설정한다.

<ImageView
	android:src="@drawable/생성한_애니메이션_drawable_xml">

 

Comments