ImageView imgRevColck;
imgRevColck = (ImageView) rootView.findViewById(R.id.imgRevClock);
Animation animation = AnimationUtils.loadAnimation(getActivity(),R.anim.anim_shake_clock);
imgRevColck.startAnimation(animation);
<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" />
<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