活动过渡不工作的软糖

时间:2014-03-09 03:57:02

标签: android android-animation

我在我的活动之间使用overridePendingTransition(R.anim.slide_in_from_bottom_webpage, R.anim.freeze);来展示过渡。转换在Gingerbread上运行良好,但在JellyBean上运行不正常。可能是什么问题?我在这里检查过类似的问题,但没有一个能解决我的问题。

slide_in_from_bottom.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" 
android:interpolator="@android:anim/linear_interpolator">
<translate
    android:fromYDelta="100%p"
    android:toYDelta="0"
    android:duration="300"
/>
</set>

freeze.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" 
android:interpolator="@android:anim/linear_interpolator">
<translate
    android:fromYDelta="0"
    android:toYDelta="0"
    android:duration="300"
/>
</set>

谢谢!

1 个答案:

答案 0 :(得分:2)

检查是否在设置中设置了“过渡动画比例”:

设置 - &gt;开发人员选项 - &gt;过渡动画比例