diff options
author | Maurice Lam <yukl@google.com> | 2015-03-03 18:27:48 -0800 |
---|---|---|
committer | Maurice Lam <yukl@google.com> | 2015-04-17 04:46:09 +0000 |
commit | bddc56648569ed21b696ca5451cd1fc82009bb43 (patch) | |
tree | d8b008b2dde31b0e91422f659aee5e6ea0253033 /res/anim | |
parent | a928ff4a67756341a972569a1029c0e981c9bb8d (diff) | |
download | packages_apps_Settings-bddc56648569ed21b696ca5451cd1fc82009bb43.zip packages_apps_Settings-bddc56648569ed21b696ca5451cd1fc82009bb43.tar.gz packages_apps_Settings-bddc56648569ed21b696ca5451cd1fc82009bb43.tar.bz2 |
Use SetupWizardLib helpers
Use SystemBarHelper, WizardManagerHelper and themes from Setup Wizard
Library.
Bug: 19594252
Change-Id: I60b6ab4f086a170ac270fb08325fc42010293523
Diffstat (limited to 'res/anim')
-rw-r--r-- | res/anim/slide_back_in.xml | 22 | ||||
-rw-r--r-- | res/anim/slide_back_out.xml | 22 | ||||
-rw-r--r-- | res/anim/slide_next_in.xml | 22 | ||||
-rw-r--r-- | res/anim/slide_next_out.xml | 22 |
4 files changed, 0 insertions, 88 deletions
diff --git a/res/anim/slide_back_in.xml b/res/anim/slide_back_in.xml deleted file mode 100644 index 009ea9f..0000000 --- a/res/anim/slide_back_in.xml +++ /dev/null @@ -1,22 +0,0 @@ -<?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. ---> - -<translate xmlns:android="http://schemas.android.com/apk/res/android" - android:duration="@integer/setup_wizard_transition_duration" - android:fromXDelta="-100%" - android:toXDelta="0%" - android:interpolator="@android:anim/decelerate_interpolator"/> diff --git a/res/anim/slide_back_out.xml b/res/anim/slide_back_out.xml deleted file mode 100644 index b7ab2b6..0000000 --- a/res/anim/slide_back_out.xml +++ /dev/null @@ -1,22 +0,0 @@ -<?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. ---> - -<translate xmlns:android="http://schemas.android.com/apk/res/android" - android:duration="@integer/setup_wizard_transition_duration" - android:fromXDelta="0%" - android:toXDelta="100%" - android:interpolator="@android:anim/decelerate_interpolator"/> diff --git a/res/anim/slide_next_in.xml b/res/anim/slide_next_in.xml deleted file mode 100644 index e5ab3e5..0000000 --- a/res/anim/slide_next_in.xml +++ /dev/null @@ -1,22 +0,0 @@ -<?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. ---> - -<translate xmlns:android="http://schemas.android.com/apk/res/android" - android:duration="@integer/setup_wizard_transition_duration" - android:fromXDelta="100%" - android:toXDelta="0%" - android:interpolator="@android:anim/decelerate_interpolator"/> diff --git a/res/anim/slide_next_out.xml b/res/anim/slide_next_out.xml deleted file mode 100644 index 8717f6a..0000000 --- a/res/anim/slide_next_out.xml +++ /dev/null @@ -1,22 +0,0 @@ -<?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. ---> - -<translate xmlns:android="http://schemas.android.com/apk/res/android" - android:duration="@integer/setup_wizard_transition_duration" - android:fromXDelta="0%" - android:toXDelta="-100%" - android:interpolator="@android:anim/decelerate_interpolator"/> |