对于这些事情,我是初学者,如果这是一个简单的问题,请道歉。
我正在尝试实现ImageSwitcher循环浏览一组图像。为此,我正在尝试按照此处所述实现计时器:How to make an ImageSwitcher switch the image every 5 secs?
我已经让图像循环好了,但图像加载然后动画就会发生。将显示图像1然后它将切换到图像2,然后淡出图像2并再次淡入其中。然后,图像2将显示指定的时间,并重复该过程。
我希望图像1淡出,然后淡入图像2。
这是我到目前为止所做的:
imageSwitcher = (ImageSwitcher) findViewById(R.id.welcome_image);
imageSwitcher.setFactory(this);
imageSwitcher.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in));
imageSwitcher.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_out));
上述问题的计时器:
Timer t = new Timer();
//Set the schedule function and rate
t.scheduleAtFixedRate(new TimerTask() {
public void run() {
//Called each time when 1000 milliseconds (1 second) (the period parameter)
currentIndex++;
// If index reaches maximum reset it
if(currentIndex==messageCount)
currentIndex=0;
runOnUiThread(new Runnable() {
public void run() {
imageSwitcher.setImageResource(imageIDs[currentIndex]);
}
});
}
},1000,5000);
并且
public View makeView() {
ImageView imageView = new ImageView(this);
imageView.setBackgroundColor(0x00000000);
imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
imageView.setLayoutParams(new ImageSwitcher.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
return imageView;
}
我非常感谢一些帮助。
答案 0 :(得分:0)
您正在设置setInAnimation()2次。你没有设置setOutAnimation()。
像:
imageSwitcher.setInAnimation(AnimationUtils.loadAnimation(this, android.R.anim.fade_in));
imageSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this,
android.R.anim.fade_out));