diff options
author | John Spurlock <jspurlock@google.com> | 2014-02-25 11:08:35 -0500 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2014-02-25 11:08:35 -0500 |
commit | 81de6716a5b075b2657b60a9d5fbe693b33a258f (patch) | |
tree | cdb76bc9cc8fec0d938ce4882e04a422ab484451 /packages/SystemUI/res | |
parent | deaa6cc34d032fc46361d0b2f520d90279fcddd2 (diff) | |
download | frameworks_base-81de6716a5b075b2657b60a9d5fbe693b33a258f.zip frameworks_base-81de6716a5b075b2657b60a9d5fbe693b33a258f.tar.gz frameworks_base-81de6716a5b075b2657b60a9d5fbe693b33a258f.tar.bz2 |
Remove unused animations.
Change-Id: I7c34732c6bc8263c42461325437c90a06214d04a
Diffstat (limited to 'packages/SystemUI/res')
-rw-r--r-- | packages/SystemUI/res/anim/hydraulic_brake_interpolator.xml | 23 | ||||
-rw-r--r-- | packages/SystemUI/res/anim/lights_out_in.xml | 26 | ||||
-rw-r--r-- | packages/SystemUI/res/anim/lights_out_out.xml | 26 | ||||
-rw-r--r-- | packages/SystemUI/res/anim/notification_dnd_off.xml | 23 | ||||
-rw-r--r-- | packages/SystemUI/res/anim/notification_dnd_on.xml | 23 |
5 files changed, 0 insertions, 121 deletions
diff --git a/packages/SystemUI/res/anim/hydraulic_brake_interpolator.xml b/packages/SystemUI/res/anim/hydraulic_brake_interpolator.xml deleted file mode 100644 index 5b6778e..0000000 --- a/packages/SystemUI/res/anim/hydraulic_brake_interpolator.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* //device/apps/common/res/anim/ease_out_interpolator.xml -** -** Copyright 2007, 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. -*/ ---> - -<decelerateInterpolator - xmlns:android="http://schemas.android.com/apk/res/android" - android:factor="10.0" /> diff --git a/packages/SystemUI/res/anim/lights_out_in.xml b/packages/SystemUI/res/anim/lights_out_in.xml deleted file mode 100644 index f76a452..0000000 --- a/packages/SystemUI/res/anim/lights_out_in.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2010 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" - > - <translate android:fromYDelta="-100%p" android:toYDelta="0" - android:duration="@android:integer/config_mediumAnimTime" - android:interpolator="@anim/hydraulic_brake_interpolator" - /> - <alpha android:fromAlpha="0.5" android:toAlpha="1.0" - android:duration="@android:integer/config_longAnimTime" - /> -</set> diff --git a/packages/SystemUI/res/anim/lights_out_out.xml b/packages/SystemUI/res/anim/lights_out_out.xml deleted file mode 100644 index 610ac7a..0000000 --- a/packages/SystemUI/res/anim/lights_out_out.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2010 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" - > - <translate android:toYDelta="-100%p" android:fromYDelta="0" - android:duration="@android:integer/config_mediumAnimTime" - android:interpolator="@anim/hydraulic_brake_interpolator" - /> - <alpha android:toAlpha="0.5" android:fromAlpha="1.0" - android:duration="@android:integer/config_longAnimTime" - /> -</set> diff --git a/packages/SystemUI/res/anim/notification_dnd_off.xml b/packages/SystemUI/res/anim/notification_dnd_off.xml deleted file mode 100644 index 4e88855..0000000 --- a/packages/SystemUI/res/anim/notification_dnd_off.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2010 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" - > - <translate android:fromXDelta="100%p" android:toXDelta="0" - android:duration="@android:integer/config_longAnimTime" - android:interpolator="@anim/hydraulic_brake_interpolator" - /> -</set> diff --git a/packages/SystemUI/res/anim/notification_dnd_on.xml b/packages/SystemUI/res/anim/notification_dnd_on.xml deleted file mode 100644 index 309943b..0000000 --- a/packages/SystemUI/res/anim/notification_dnd_on.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2010 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" - > - <translate android:toXDelta="100%p" android:fromXDelta="0" - android:duration="@android:integer/config_longAnimTime" - android:interpolator="@anim/hydraulic_brake_interpolator" - /> -</set> |