是的,Android的ImageView可以實現旋轉動畫。可以通過使用旋轉動畫來實現ImageView的旋轉效果。以下是一個簡單的示例代碼:
ImageView imageView = findViewById(R.id.imageView);
// 創建一個旋轉動畫
RotateAnimation rotateAnimation = new RotateAnimation(0, 360,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotateAnimation.setDuration(1000); // 設置動畫持續時間
rotateAnimation.setRepeatCount(Animation.INFINITE); // 設置動畫重復次數
// 開始動畫
imageView.startAnimation(rotateAnimation);
以上代碼會使ImageView不斷地順時針旋轉,直到動畫停止。您可以根據需要自定義動畫的各種屬性,如旋轉角度、持續時間、重復次數等。