我使用以下代码进行从右到左的过渡。
<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>
以下这些代码从左到右
<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>`
它适用于此overridePendingTransition(R.anim.rtol, R.anim.ltor);
但是,它在转换时显示黑屏并且不平滑。 任何有用的答案将不胜感激。
答案 0 :(得分:1)
您是否尝试过Android中已有的android默认Transitions
。
例如
@android:anim/slide_in_left
和
@android:anim/slide_out_right