summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/anim/slide_in.xml10
-rw-r--r--res/anim/slide_out.xml10
2 files changed, 8 insertions, 12 deletions
diff --git a/res/anim/slide_in.xml b/res/anim/slide_in.xml
index b2ebf7db0..9f9c4d4c7 100644
--- a/res/anim/slide_in.xml
+++ b/res/anim/slide_in.xml
@@ -13,10 +13,8 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
+<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:interpolator/fast_out_slow_in"
- android:valueFrom="0.67"
- android:valueTo="0"
- android:valueType="floatType"
- android:propertyName="yFraction"
- android:duration="666" /> \ No newline at end of file
+ android:duration="666"
+ android:fromYDelta="67%p"
+ android:toYDelta="0" /> \ No newline at end of file
diff --git a/res/anim/slide_out.xml b/res/anim/slide_out.xml
index d3b92e38e..e77bcde06 100644
--- a/res/anim/slide_out.xml
+++ b/res/anim/slide_out.xml
@@ -13,10 +13,8 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
+<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:interpolator/fast_out_slow_in"
- android:valueFrom="0"
- android:valueTo="0.8"
- android:valueType="floatType"
- android:propertyName="yFraction"
- android:duration="429" /> \ No newline at end of file
+ android:duration="429"
+ android:fromYDelta="0"
+ android:toYDelta="80%p" /> \ No newline at end of file