diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-02-19 10:57:35 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-02-19 10:57:35 -0800 |
commit | d8bccef54d490ce562e61fc907201da0c666314e (patch) | |
tree | f254350cce4028765c3b357809cbca4784b18d02 /res/anim | |
parent | 5055ba62e22becc9c8d03898b80cda8ed68cfe80 (diff) | |
download | packages_apps_LegacyCamera-d8bccef54d490ce562e61fc907201da0c666314e.zip packages_apps_LegacyCamera-d8bccef54d490ce562e61fc907201da0c666314e.tar.gz packages_apps_LegacyCamera-d8bccef54d490ce562e61fc907201da0c666314e.tar.bz2 |
auto import from //branches/cupcake/...@132276
Diffstat (limited to 'res/anim')
-rw-r--r-- | res/anim/on_screen_hint_accelerate.xml | 21 | ||||
-rw-r--r-- | res/anim/on_screen_hint_decelerate.xml | 20 | ||||
-rw-r--r-- | res/anim/on_screen_hint_enter.xml | 22 | ||||
-rw-r--r-- | res/anim/on_screen_hint_exit.xml | 23 |
4 files changed, 86 insertions, 0 deletions
diff --git a/res/anim/on_screen_hint_accelerate.xml b/res/anim/on_screen_hint_accelerate.xml new file mode 100644 index 0000000..ffbfc39 --- /dev/null +++ b/res/anim/on_screen_hint_accelerate.xml @@ -0,0 +1,21 @@ +<?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. +*/ +--> + +<accelerateInterpolator xmlns:android="http://schemas.android.com/apk/res/android" factor="1" /> diff --git a/res/anim/on_screen_hint_decelerate.xml b/res/anim/on_screen_hint_decelerate.xml new file mode 100644 index 0000000..e63421d --- /dev/null +++ b/res/anim/on_screen_hint_decelerate.xml @@ -0,0 +1,20 @@ +<?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. +*/ +--> + +<decelerateInterpolator xmlns:android="http://schemas.android.com/apk/res/android" factor="1" /> diff --git a/res/anim/on_screen_hint_enter.xml b/res/anim/on_screen_hint_enter.xml new file mode 100644 index 0000000..c7ae9c3 --- /dev/null +++ b/res/anim/on_screen_hint_enter.xml @@ -0,0 +1,22 @@ +<?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. +*/ +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@+android:anim/on_screen_hint_decelerate" + android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="400" /> diff --git a/res/anim/on_screen_hint_exit.xml b/res/anim/on_screen_hint_exit.xml new file mode 100644 index 0000000..e1d1ff2 --- /dev/null +++ b/res/anim/on_screen_hint_exit.xml @@ -0,0 +1,23 @@ +<?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. +*/ +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:interpolator="@+android:anim/on_screen_hint_accelerate" + android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="400" +/> |