diff options
author | John Spurlock <jspurlock@google.com> | 2014-11-08 12:40:19 -0500 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2014-11-10 08:32:23 -0500 |
commit | bb4a702e6fe44cb026097db13492f8345b38ee97 (patch) | |
tree | bd39584ed56730b3543a6d5ddd8a036a99d8391d /packages/SystemUI/res/anim | |
parent | aed8e76172477c884ec7bef659f050d0817efb7d (diff) | |
download | frameworks_base-bb4a702e6fe44cb026097db13492f8345b38ee97.zip frameworks_base-bb4a702e6fe44cb026097db13492f8345b38ee97.tar.gz frameworks_base-bb4a702e6fe44cb026097db13492f8345b38ee97.tar.bz2 |
Volume dialog: Add zen mode icons and notification access.
- Add icon above text to all three zen mode states, update text style.
- Remove zentoast.
- Update shared borderless rect background, masks now support shapes.
- Update size of volume stream icons.
- Ensure all volume icons are expressions of white.
- Make volume icons testable via new demo mode command.
- Add a divider + secondary icon to access the notification slider.
- Animate the transition when accessing notification slider.
Bug: 18206097
Bug: 16303068
Bug: 18102850
Change-Id: I5eb6f820dc317e89be272cc78f6c80ed969ad5e9
Diffstat (limited to 'packages/SystemUI/res/anim')
-rw-r--r-- | packages/SystemUI/res/anim/zen_toast_enter.xml | 20 | ||||
-rw-r--r-- | packages/SystemUI/res/anim/zen_toast_exit.xml | 20 |
2 files changed, 0 insertions, 40 deletions
diff --git a/packages/SystemUI/res/anim/zen_toast_enter.xml b/packages/SystemUI/res/anim/zen_toast_enter.xml deleted file mode 100644 index e236782..0000000 --- a/packages/SystemUI/res/anim/zen_toast_enter.xml +++ /dev/null @@ -1,20 +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. ---> -<alpha xmlns:android="http://schemas.android.com/apk/res/android" - android:interpolator="@android:interpolator/decelerate_quad" - android:fromAlpha="0.0" android:toAlpha="1.0" - android:duration="@integer/zen_toast_animation_duration" /> diff --git a/packages/SystemUI/res/anim/zen_toast_exit.xml b/packages/SystemUI/res/anim/zen_toast_exit.xml deleted file mode 100644 index a9b1ab2..0000000 --- a/packages/SystemUI/res/anim/zen_toast_exit.xml +++ /dev/null @@ -1,20 +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. ---> -<alpha xmlns:android="http://schemas.android.com/apk/res/android" - android:interpolator="@android:interpolator/accelerate_quad" - android:fromAlpha="1.0" android:toAlpha="0.0" - android:duration="@integer/zen_toast_animation_duration" /> |