每个屏幕尺寸的片段幻灯片动画?

时间:2014-06-13 09:28:55

标签: android animation android-fragments

我的应用中的导航是基于片段的,我想添加幻灯片和幻灯片动画。

我试过这样:

动画文件夹中我的动画xmls示例:

<?xml version="1.0" encoding="utf-8"?>
<set>
  <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:propertyName="x" 
    android:valueType="floatType"
    android:valueFrom="0"
    android:valueTo="-1000" 
    android:duration="500"/>
</set>

我使用像这样的fragmentTransaction:

fragmentTransaction.setCustomAnimations(R.animator.from_right, R.animator.to_left, R.animator.from_left, R.animator.to_right);

嗯它很好并且工作但我真的很喜欢动画的旧版本,我可以定义百分比动画“距离”,但我的应用程序是android 4.0+所以我不能使用旧的动画方法。

这样就不支持多种屏幕尺寸。

有人可以建议我为每种屏幕尺寸制作动态动画吗?

0 个答案:

没有答案