0
我已經在文本視圖中顯示了文本.........我想要做動畫像旋轉等......如何做到這一點?哪些類用於它?我想要一個示例程序嗎?用於創建動畫的android編程
我已經在文本視圖中顯示了文本.........我想要做動畫像旋轉等......如何做到這一點?哪些類用於它?我想要一個示例程序嗎?用於創建動畫的android編程
http://developer.android.com/reference/android/view/animation/RotateAnimation.html
RotateAnimation rotate = new RotateAnimation(0f, 90f);
rotate.setDuration(1000);
textView.startAnimation(rotate);