需要帮助Android活动从右到左过渡

时间:2015-05-28 09:31:13

标签: android

我使用以下代码进行从右到左的过渡。

<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);

但是,它在转换时显示黑屏并且不平滑。 任何有用的答案将不胜感激。

1 个答案:

答案 0 :(得分:1)

您是否尝试过Android中已有的android默认Transitions

例如

@android:anim/slide_in_left

@android:anim/slide_out_right