ImageSwitcher slide animation not work when use glide to load.
imageSwitcher.setInAnimation(In);
imageSwitcher.setOutAnimation(Out);
Glide
.with(getActivity())
.load(imageURL)
.into((ImageView) imageSwitcher.getCurrentView());
This animation works fine when load image form local resource without glide
imageSwitcher.setImageResource(data.get(position).getImage_drawable());
Just use it like this: