//定义pop_menu_anim.xml
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:duration="800" android:drawable="@drawable/pop_eyes" />
<item android:duration="150" android:drawable="@drawable/pop_eyes_closed" />
<item android:duration="150" android:drawable="@drawable/pop_eyes" />
<item android:duration="150" android:drawable="@drawable/pop_eyes_closed" />
<item android:duration="150" android:drawable="@drawable/pop_eyes" />
<item android:duration="150" android:drawable="@drawable/pop_eyes_closed" />
<item android:duration="2200" android:drawable="@drawable/pop_eyes" />
</animation-list>
//代码
ImageView hideBg = (ImageView)findViewById(R.id.hide_button_bg);
hideBg.setImageResource(R.drawable.pop_menu_anim);//眨眼
AnimationDrawable animationBlink =(AnimationDrawable)hideBg.getDrawable();
animationBlink.start();