티스토리 뷰
2가지 방법,
1. xml 사용 한 구현 방법
1). xml 생성
res\drawable\ 안에 xml 생성
<?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/animation_1" android:duration="50"/>
<item android:drawable="@drawable/animation_2" android:duration="50"/>
<item android:drawable="@drawable/animation_3" android:duration="50"/>
</animation-list>
2). imageView에 위에서 생성한 animation src로 적용
<ImageView
android:id="@+id/animation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/animation_list"/>
3). activity java 로 구현
ImageView animation = findViewById(R.id.imsi_animation);
AnimationDrawable animationDrawable = (AnimationDrawable) imsi_animation.getDrawable();
animationDrawable.start();
-------------------------------------------------------------------------------------------------------------------
2. all java로 구현
ImageView animation = findViewById(R.id.imsi_animation);
AnimationDrawable animationDrawable = new AnimationDrawable();
animationDrawable.addFrame(getResources().getDrawable(R.drawable.animation_1),25);
animationDrawable.addFrame(getResources().getDrawable(R.drawable.animation_2),25);
animationDrawable.addFrame(getResources().getDrawable(R.drawable.animation_3),25);
animation.setImageDrawable(animationDrawable);
// 25는 duration
// animationDrawable.setOneShot(false); 코드 추가하면 애니메이션 반복 됨,
'android' 카테고리의 다른 글
retrofit (0) | 2022.09.21 |
---|---|
by viewmodels() 쓰는법, (0) | 2022.08.18 |
AnimationDrawable memory 문제. (0) | 2020.04.27 |
안드로이드 SurfaceView Video 예제 (0) | 2020.01.31 |
ExoPlayer 사용 법. (0) | 2020.01.31 |
- Total
- Today
- Yesterday
- 구글 맵 선그리기
- rn
- Android
- spannableText
- ubunut 설치 link
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- not working adb
- 안드로이드
- mongo db
- 명령어
- react native state
- not starting .bash_profile
- 자바
- 구글 맵 경로 그리기
- React Native
- text 부분 색 칠하기
- nosql
- not found adb
- 데이터베이스
- 차번호 정규식
- https://hwan-shell.tistory.com/244
- 귀찮아;;
- insert
- 차번호 정규표현식
- adb 환경변수
- mac android
- MongoDB
- 함수형 코드
- 클래스형 코드
- ubunut android
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |