summaryrefslogtreecommitdiffstats
path: root/res/anim
diff options
context:
space:
mode:
authorIhab Awad <ihab@google.com>2014-03-03 14:12:57 -0800
committerIhab Awad <ihab@google.com>2014-03-07 15:14:41 -0800
commita389ad358b723ce1725662c79bfc175ddc2e558c (patch)
tree04d00fd2c2f722555c577bddf179cea53dc2687f /res/anim
parent022d0e9d10e02c2b71564d83ec56c952978f2831 (diff)
downloadpackages_apps_InCallUI-a389ad358b723ce1725662c79bfc175ddc2e558c.tar.gz
packages_apps_InCallUI-a389ad358b723ce1725662c79bfc175ddc2e558c.tar.bz2
packages_apps_InCallUI-a389ad358b723ce1725662c79bfc175ddc2e558c.zip
Update dialpad to new look and feel.
http://b/13189041 Change-Id: I26b306300e11fd6830d40b51a705c472c89925f4
Diffstat (limited to 'res/anim')
-rw-r--r--res/anim/slide_in.xml23
-rw-r--r--res/anim/slide_out.xml23
2 files changed, 46 insertions, 0 deletions
diff --git a/res/anim/slide_in.xml b/res/anim/slide_in.xml
new file mode 100644
index 00000000..c8372ce2
--- /dev/null
+++ b/res/anim/slide_in.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<objectAnimator
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:valueFrom="0.67"
+ android:valueTo="0"
+ android:valueType="floatType"
+ android:propertyName="yFraction"
+ android:duration="200" /> \ No newline at end of file
diff --git a/res/anim/slide_out.xml b/res/anim/slide_out.xml
new file mode 100644
index 00000000..2861db27
--- /dev/null
+++ b/res/anim/slide_out.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<objectAnimator
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/decelerate_interpolator"
+ android:valueFrom="0"
+ android:valueTo="0.67"
+ android:valueType="floatType"
+ android:propertyName="yFraction"
+ android:duration="200" /> \ No newline at end of file