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> |
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); |
cs |
'# App > Android(JAVA)' 카테고리의 다른 글
[안드로이드 스튜디오] BottomNavigationView (0) | 2019.05.28 |
---|---|
[안드로이드 스튜디오] GitHub (깃허브) 연동 (0) | 2019.05.21 |
[안드로이드 스튜디오] 로딩 화면 (애니메이션 응용, 제거) -2 (0) | 2019.05.04 |
[안드로이드 스튜디오] 그림자 속성 추가하기 (0) | 2019.05.04 |
[안드로이드 스튜디오] View를 동적으로 생성하기 (자바에서 생성) (0) | 2018.11.17 |
[안드로이드 스튜디오] ProgressBar 색상 지정하기, 무한 원돌리기 (0) | 2018.11.11 |
[안드로이드 스튜디오] 항상 밑에 있는 뷰 만들기 (0) | 2018.11.11 |