android programming for creating animations [closed]
i hav displayed the text in a textview.........i want to do animations like rotate etc.......how to do it? which classes are used for it?i want a example program for it?
http://developer.android.com/reference/android/view/animation/RotateAnimation.html
RotateAnimation rotate = new RotateAnimation(0f, 90f);
rotate.setDuration(1000);
textView.startAnimation(rotate);
精彩评论