From this topic. Android Fragments and animation
I try to use nineoldandroids library but i can't use objectAnimator in xml file like below example.
<?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="-1280"
android:valueTo="0"
android:duration="500"/>
</set>
how to add animation for fragment on android 2.1 ? (i use Compatibility Package.)