How can I achieve shake/wobble animation in android programmatically. There is a AndroidViewAnimations library available through which we can get the effect. But I don\'t want t
let's say that mView is the view you want to animate:
mView
ObjectAnimator .ofFloat(mView, "translationX", 0, 25, -25, 25, -25,15, -15, 6, -6, 0) .setDuration(duration) .start();