diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 1d4c75065966c4f6f56900e31f655bfd1b334435 (patch) | |
tree | 5d4526db3153daa63087fcb9384f8bc0659fbd18 /res/anim | |
download | packages_apps_LegacyCamera-1d4c75065966c4f6f56900e31f655bfd1b334435.zip packages_apps_LegacyCamera-1d4c75065966c4f6f56900e31f655bfd1b334435.tar.gz packages_apps_LegacyCamera-1d4c75065966c4f6f56900e31f655bfd1b334435.tar.bz2 |
Initial Contribution
Diffstat (limited to 'res/anim')
-rw-r--r-- | res/anim/alpha_in.xml | 24 | ||||
-rw-r--r-- | res/anim/alpha_out.xml | 25 | ||||
-rw-r--r-- | res/anim/auto_focus_blink.xml | 19 | ||||
-rw-r--r-- | res/anim/hyperspace_out.xml | 56 | ||||
-rw-r--r-- | res/anim/rotate_in.xml | 24 | ||||
-rw-r--r-- | res/anim/rotate_out.xml | 26 | ||||
-rw-r--r-- | res/anim/rotate_shrink_in.xml | 38 | ||||
-rw-r--r-- | res/anim/rotate_shrink_out.xml | 38 | ||||
-rw-r--r-- | res/anim/slide_in.xml | 21 | ||||
-rw-r--r-- | res/anim/slide_in_vertical.xml | 21 | ||||
-rw-r--r-- | res/anim/slide_out.xml | 21 | ||||
-rw-r--r-- | res/anim/slide_out_vertical.xml | 21 | ||||
-rw-r--r-- | res/anim/transition_in.xml | 24 | ||||
-rw-r--r-- | res/anim/transition_out.xml | 25 |
14 files changed, 383 insertions, 0 deletions
diff --git a/res/anim/alpha_in.xml b/res/anim/alpha_in.xml new file mode 100644 index 0000000..6ad315a --- /dev/null +++ b/res/anim/alpha_in.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <alpha + android:fromAlpha="0.0" + android:toAlpha="1.0" + android:fillAfter="true" + android:startOffset="900" + android:duration="700" /> +</set> diff --git a/res/anim/alpha_out.xml b/res/anim/alpha_out.xml new file mode 100644 index 0000000..bf6ee89 --- /dev/null +++ b/res/anim/alpha_out.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0" + android:fillAfter="true" + android:duration="700" /> +</set> + + diff --git a/res/anim/auto_focus_blink.xml b/res/anim/auto_focus_blink.xml new file mode 100644 index 0000000..dff217d --- /dev/null +++ b/res/anim/auto_focus_blink.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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/accelerate_interpolator" + android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="200" /> diff --git a/res/anim/hyperspace_out.xml b/res/anim/hyperspace_out.xml new file mode 100644 index 0000000..f963156 --- /dev/null +++ b/res/anim/hyperspace_out.xml @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + + <scale + android:interpolator="@android:anim/accelerate_decelerate_interpolator" + android:fromXScale="1.0" + android:toXScale="1.4" + android:fromYScale="1.0" + android:toYScale="0.6" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="false" + android:duration="700" /> + + + <set + android:interpolator="@android:anim/accelerate_interpolator"> + + <scale + android:fromXScale="1.4" + android:toXScale="0.0" + android:fromYScale="0.6" + android:toYScale="0.0" + android:pivotX="50%" + android:pivotY="50%" + android:startOffset="700" + android:duration="400" + android:fillBefore="false" /> + + <rotate + android:fromDegrees="0" + android:toDegrees="-45" + android:toYScale="0.0" + android:pivotX="50%" + android:pivotY="50%" + android:startOffset="700" + android:duration="400" /> + </set> + +</set> + diff --git a/res/anim/rotate_in.xml b/res/anim/rotate_in.xml new file mode 100644 index 0000000..25edc8b --- /dev/null +++ b/res/anim/rotate_in.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<rotate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromDegrees="90" + android:toDegrees="0" + android:toYScale="0.0" + android:pivotX="0%" + android:pivotY="100%" + android:startOffset="400" + android:duration="300" /> diff --git a/res/anim/rotate_out.xml b/res/anim/rotate_out.xml new file mode 100644 index 0000000..4ebf33f --- /dev/null +++ b/res/anim/rotate_out.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<rotate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromDegrees="0" + android:toDegrees="-90" + android:toYScale="0.0" + android:pivotX="0%" + android:pivotY="100%" + android:startOffset="0" + android:duration="300" /> + + diff --git a/res/anim/rotate_shrink_in.xml b/res/anim/rotate_shrink_in.xml new file mode 100644 index 0000000..3582102 --- /dev/null +++ b/res/anim/rotate_shrink_in.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <scale + android:fromXScale="0.01" + android:toXScale="1.0" + android:fromYScale="0.01" + android:toYScale="1.0" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:startOffset="400" + android:duration="300" /> + + <rotate + android:fromDegrees="90" + android:toDegrees="0" + android:toYScale="0.0" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:startOffset="400" + android:duration="300" /> +</set> diff --git a/res/anim/rotate_shrink_out.xml b/res/anim/rotate_shrink_out.xml new file mode 100644 index 0000000..c608a8f --- /dev/null +++ b/res/anim/rotate_shrink_out.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false"> + <scale + android:fromXScale="1.0" + android:toXScale="0.01" + android:fromYScale="1.0" + android:toYScale="0.01" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:duration="300" /> + + <rotate + android:fromDegrees="0" + android:toDegrees="-90" + android:pivotX="50%" + android:pivotY="50%" + android:fillAfter="true" + android:startOffset="0" + android:duration="300" /> +</set> + + diff --git a/res/anim/slide_in.xml b/res/anim/slide_in.xml new file mode 100644 index 0000000..d1b9e5e --- /dev/null +++ b/res/anim/slide_in.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromXDelta="100%p" + android:toXDelta="0" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/slide_in_vertical.xml b/res/anim/slide_in_vertical.xml new file mode 100644 index 0000000..4727689 --- /dev/null +++ b/res/anim/slide_in_vertical.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromYDelta="100%p" + android:toYDelta="0" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/slide_out.xml b/res/anim/slide_out.xml new file mode 100644 index 0000000..204cf28 --- /dev/null +++ b/res/anim/slide_out.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromXDelta="0" + android:toXDelta="-100%p" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/slide_out_vertical.xml b/res/anim/slide_out_vertical.xml new file mode 100644 index 0000000..3f3f2a0 --- /dev/null +++ b/res/anim/slide_out_vertical.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> + +<translate xmlns:android="http://schemas.android.com/apk/res/android" + android:fromYDelta="0" + android:toYDelta="-100%p" + android:startOffset="0" + android:duration="400" /> diff --git a/res/anim/transition_in.xml b/res/anim/transition_in.xml new file mode 100644 index 0000000..6c2ad61 --- /dev/null +++ b/res/anim/transition_in.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* //device/apps/common/res/anim/fade_in.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. +*/ +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:fromAlpha="0.0" + android:toAlpha="1.0" + android:duration="1000" /> diff --git a/res/anim/transition_out.xml b/res/anim/transition_out.xml new file mode 100644 index 0000000..76e67f4 --- /dev/null +++ b/res/anim/transition_out.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* //device/apps/common/res/anim/fade_out.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. +*/ +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:fromAlpha="1.0" + android:toAlpha="0.0" + android:duration="1000" +/> |