애니메이션 만들기

Lee HyeongJong·2022년 12월 14일
0

안드로이드

목록 보기
29/43

애니메이션 코드

1) activity.java

ImageView imgRevColck;
imgRevColck = (ImageView) rootView.findViewById(R.id.imgRevClock);

Animation animation = AnimationUtils.loadAnimation(getActivity(),R.anim.anim_shake_clock);
imgRevColck.startAnimation(animation);

2) anim_shake_clock.xml

<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromXDelta="0"
    android:fromYDelta="0"
    android:toXDelta="10"
    android:toYDelta="10"
    android:duration="500"
    android:interpolator="@anim/cycle_4_pf" />

3)cycle_4_pf.xml

<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
    android:cycles="4" />

참고
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=tkddlf4209&logNo=220700530627

profile
코딩을 시작해보자

0개의 댓글