summaryrefslogtreecommitdiffstats
path: root/res/anim
diff options
context:
space:
mode:
authorcretin45 <cretin45@gmail.com>2015-03-09 14:49:31 -0700
committercretin45 <cretin45@gmail.com>2015-03-09 14:49:31 -0700
commit0d31b31aac79be0d9ffd3fb2d8045be0fa236505 (patch)
tree3ff5445639f1fd992a6e5ad776d9b88fed812232 /res/anim
parent7732b7485d9dc145ca9093d22cb08259203719d0 (diff)
downloadpackages_apps_SetupWizard-0d31b31aac79be0d9ffd3fb2d8045be0fa236505.zip
packages_apps_SetupWizard-0d31b31aac79be0d9ffd3fb2d8045be0fa236505.tar.gz
packages_apps_SetupWizard-0d31b31aac79be0d9ffd3fb2d8045be0fa236505.tar.bz2
SetupWizard: Refactor for better transitions out of OOBE
Change-Id: If91da3f44dbc5383236b54da529953d48a475250
Diffstat (limited to 'res/anim')
-rw-r--r--res/anim/translucent_enter.xml24
-rw-r--r--res/anim/translucent_exit.xml24
2 files changed, 48 insertions, 0 deletions
diff --git a/res/anim/translucent_enter.xml b/res/anim/translucent_enter.xml
new file mode 100644
index 0000000..1fc6d90
--- /dev/null
+++ b/res/anim/translucent_enter.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 2009, 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.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:interpolator/decelerate_quad">
+ <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
+ android:duration="@android:integer/config_shortAnimTime"/>
+</set>
diff --git a/res/anim/translucent_exit.xml b/res/anim/translucent_exit.xml
new file mode 100644
index 0000000..cf4e9a8
--- /dev/null
+++ b/res/anim/translucent_exit.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 2009, 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.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:interpolator/accelerate_quad">
+ <alpha android:fromAlpha="1.0" android:toAlpha="0"
+ android:duration="@android:integer/config_shortAnimTime"/>
+</set>