2013-02-04 92 views
15

我不知道這個動畫。我如何爲ImageView製作振動動畫

我該如何做到這一點通過這樣的XML?還是其他解決方案

<?xml version="1.0" encoding="utf-8"?> 
<set xmlns:android="http://schemas.android.com/apk/res/android" 
    android:interpolator="@android:anim/accelerate_decelerate_interpolator" 
    android:fillAfter="true"> 
    ...... 
</set> 

感謝您的HELF

+0

檢查這樣的回答:這對我來說很好工作http://stackoverflow.com/a/9449590/607968 – rDroid

回答

11

您可以檢出以下鏈接瞭解如何在震動的動漫作品?

1)Shaking animation in android
2)Vibration animation

我希望這會幫助你。

由於

+0

嗨,我不意味着振動Android設備。我的意思是ImageView的動畫 –

+1

你的意思是說你想動搖imageview? – GrIsHu

+0

是的,這就是我的意思 –

8

此代碼抖動在水平方向上的視圖

shake.xml

<?xml version="1.0" encoding="utf-8"?> 
<translate xmlns:android="http://schemas.android.com/apk/res/android" 
    android:duration="1000" 
    android:fromXDelta="0" 
    android:interpolator="@anim/cycle_5" 
    android:toXDelta="10" /> 

cycle_5.xml

<?xml version="1.0" encoding="utf-8"?> 
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android" 
    android:cycles="5" /> 

方法使用屬性動畫)下面的代碼爲我工作動搖的ImageView

public void onShakeImage() {  
    Animation shake; 
    shake = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.shake); 

    ImageView image; 
    image = (ImageView) findViewById(R.id.image_view); 

    image.startAnimation(shake); // starts animation 
} 
+0

setAnimation無法啓動它。 您需要使用startAnimation(搖動)來實際啓動動畫。 – Eli

2

1)振動或 2)搖 (。

ObjectAnimator rotate = ObjectAnimator.ofFloat(animateView, "rotation", 0f, 20f, 0f, -20f, 0f); // rotate o degree then 20 degree and so on for one loop of rotation. 
// animateView (View object) 
     rotate.setRepeatCount(20); // repeat the loop 20 times 
     rotate.setDuration(100); // animation play time 100 ms 
     rotate.start(); 
0

在動畫目錄下創建動畫文件:

<?xml version="1.0" encoding="utf-8"?> 
<rotate xmlns:android="http://schemas.android.com/apk/res/android" 
    android:duration="200" 
    android:fromDegrees="-10" 
    android:pivotX="50%" 
    android:pivotY="50%" 
    android:repeatCount="infinite" 
    android:repeatMode="reverse" 
    android:toDegrees="10" /> 



Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake); 
your_view.startAnimation(shake);