I have found solution for standard view pager Disable ViewPager scrolling animation But my view pager is already transformed to:
public void transformPage(View view, float position) { int width = view.getWidth(); int height = view.getHeight(); if (position < -1) { view.setAlpha(0); } else if (position <= 1) { view.setTranslationY(height * position); view.setTranslationX(width * -position); } else { view.setAlpha(0); } } How is it possible to transform further to achieve depth scroll animation?