你好亲爱的程序员!
我正在尝试为一个应用程序制作一个动画菜单,该应用程序在 5 个 viewflipper 子项之间以随机时间间隔随机翻转。在每次翻转之间,我想“插入”一个基于逐帧可绘制对象的动画。到目前为止,我能够根据对动画方法的调用是在“运行”方法的开头还是结尾来显示随机翻转或动画。我不知道如何确保它在处理程序的每次迭代“之间”执行。
这是代码:
public class BTG extends Activity {
private ViewFlipper fliptest;
private Handler testHandler = new Handler();
private Random mRand = new Random();
private Random timerMenu = new Random();
int randomTime;
AnimationDrawable menuAnimation;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_btg);
fliptest = (ViewFlipper) findViewById(R.id.menuFlipper);
testHandler.postDelayed(mFlip, randomTime);
}
private Runnable mFlip = new Runnable() {
@Override
public void run() {
//if this call is at the beginning, the menu only flips between the 5 first
//children of the viewflipper and the animation is never shown
startAnimation();
randomTime = (timerMenu.nextInt(6) + 1) * 2000;
System.out.println("executes the run method " + randomTime);
fliptest.setDisplayedChild(mRand.nextInt(5));
testHandler.postDelayed(this, (mRand.nextInt(6)+ 1) * 2000);
//if this call is at the end, the menu only displays the animation
//which launches itself after a random time as set in the handler
//startAnimation();
}
class Starter implements Runnable {
public void run() {
menuAnimation.start();
}
}
private void startAnimation() {
System.out.println("The start Animation method is run");
fliptest.setDisplayedChild(5);
menuAnimation = new AnimationDrawable();
menuAnimation.addFrame(getResources().getDrawable(R.drawable.animate_menu_trans1), 100);
menuAnimation.addFrame(getResources().getDrawable(R.drawable.animate_menu_trans2), 100);
menuAnimation.addFrame(getResources().getDrawable(R.drawable.animate_menu_trans3), 100);
menuAnimation.addFrame(getResources().getDrawable(R.drawable.animate_menu_trans1), 100);
menuAnimation.addFrame(getResources().getDrawable(R.drawable.animate_menu_trans2), 100);
menuAnimation.addFrame(getResources().getDrawable(R.drawable.animate_menu_trans3), 100);
menuAnimation.setOneShot(true);
ImageView imageView = (ImageView) findViewById(R.id.menu_animation);
imageView.setImageDrawable(menuAnimation);
imageView.post(new Starter());
}
};