# App/Android(JAVA)

[안드로이드 스튜디오] 로딩 화면 (간단한 애니메이션) -1

anim list를 사용하지 않는 방법

 

 

1. res - new - directory 

 

anim 이름의 폴더를 res에 생성합니다.

 

2. loading.xml 파일을 생성합니다

 

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

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

<set xmlns:android="http://schemas.android.com/apk/res/android">

    <scale

        android:duration="600"

        android:fromXScale="1.0"

        android:fromYScale="1.0"

        android:interpolator="@android:anim/accelerate_decelerate_interpolator"

        android:pivotX="50%"

        android:pivotY="50%"

        android:repeatCount="infinite"

        android:repeatMode="reverse"

        android:toXScale="-1.0"

        android:toYScale="1.0" />

</set>

Colored by Color Scripter

cs

 

 

복붙!

 

 

3. 이미지파일 하나를 준비해서 drawable에 넣어줌

 

4. 애니메이션 보여줄 화면에 이미지뷰 생성

 

5.

1

2

3

mLoadingImage = (ImageView)findViewById(R.id.iv_fourth_loading);

anim = AnimationUtils.loadAnimation(this, R.anim.loading);

mLoadingImage.setAnimation(anim);

Colored by Color Scripter

cs
728x90