android- simple fade out and fade in animation for viewflipper
问题 I'm new to android and I don't know a lot about android animation . I've a viewflipper and I want to animate between images inside it . This is the code : runnable = new Runnable() { public void run() { handler.postDelayed(runnable, 3000); imageViewFlipper.setInAnimation(fadeIn); imageViewFlipper.setOutAnimation(fadeOut); imageViewFlipper.showNext(); } }; handler = new Handler(); handler.postDelayed(runnable, 500); } The 2 animated file are not good , they animate very badly . I just need a