I have a PageTransfomer applied to a ViewPager, it works great but I want to launch the page\'s transformation as soon as I set the PageTransformer to the ViewPager. I alrea
Try one of these things:
onPostCreate()
new Handler().post(new Runnable() { /* your code */ });