summaryrefslogtreecommitdiffstats
path: root/res/anim
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2009-04-23 16:24:26 -0700
committerOwen Lin <owenlin@google.com>2009-04-28 12:51:21 -0700
commit228f1322c6dcbd324ecf1b927db6b9ef10c7868c (patch)
tree03822fbb2543e6e1102dfed91fb8216bacb7af8b /res/anim
parent2716078c6252f926cea467be4202855d491f8cf7 (diff)
downloadLegacyCamera-228f1322c6dcbd324ecf1b927db6b9ef10c7868c.zip
LegacyCamera-228f1322c6dcbd324ecf1b927db6b9ef10c7868c.tar.gz
LegacyCamera-228f1322c6dcbd324ecf1b927db6b9ef10c7868c.tar.bz2
More UI on multiselect. A grayout checkbox for unselected images and a dynamic button pannel shows when user
select some images.
Diffstat (limited to 'res/anim')
-rw-r--r--res/anim/footer_appear.xml25
-rw-r--r--res/anim/footer_disappear.xml25
2 files changed, 50 insertions, 0 deletions
diff --git a/res/anim/footer_appear.xml b/res/anim/footer_appear.xml
new file mode 100644
index 0000000..e9242b8
--- /dev/null
+++ b/res/anim/footer_appear.xml
@@ -0,0 +1,25 @@
+<?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.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android" >
+ <translate
+ android:fromYDelta="+10%p"
+ android:toYDelta="0"
+ android:duration="300" />
+</set>
diff --git a/res/anim/footer_disappear.xml b/res/anim/footer_disappear.xml
new file mode 100644
index 0000000..1331931
--- /dev/null
+++ b/res/anim/footer_disappear.xml
@@ -0,0 +1,25 @@
+<?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.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android" >
+ <translate
+ android:fromYDelta="0"
+ android:toYDelta="+10%p"
+ android:duration="300" />
+</set>