I used these below codes for right to left transition.
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="500"
android:fromXDelta="-100%"
android:toXDelta="0%" >
</translate>
</set>
and these below codes for left to right
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="500"
android:fromXDelta="100%"
android:toXDelta="0%" >
</translate>
</set>`
it works fine with this overridePendingTransition(R.anim.rtol, R.anim.ltor);
BUT, it shows a black screen when doing transition and not smooth. Any helpful answer will be appreciated.