ImageSwitcher 滑动动画在使用 glide 加载时不起作用。
imageSwitcher.setInAnimation(In);
imageSwitcher.setOutAnimation(Out);
Glide
.with(getActivity())
.load(imageURL)
.into((ImageView) imageSwitcher.getCurrentView());
当从本地资源加载图像而不滑动时,此动画效果很好
imageSwitcher.setImageResource(data.get(position).getImage_drawable());