aboutsummaryrefslogtreecommitdiffstats
path: root/java/res/anim
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-03-14 14:46:22 +0900
committerTadashi G. Takaoka <takaoka@google.com>2012-03-14 19:36:24 +0900
commit73a46bfeb7a109b49be196e5d679e44c9e66a2e8 (patch)
treea196115f0d73f747653167a79d95811379b1e9ca /java/res/anim
parent02e70cf999585d92530fd2fe73c163deed914b2d (diff)
downloadlatinime-73a46bfeb7a109b49be196e5d679e44c9e66a2e8.tar.gz
latinime-73a46bfeb7a109b49be196e5d679e44c9e66a2e8.tar.xz
latinime-73a46bfeb7a109b49be196e5d679e44c9e66a2e8.zip
Gray out "alt-code-while-typing" key icon while typing
Bug: 6128215 Change-Id: Ie9c13d9d38aad6e92cc465e22f3ef20c80e0a36a
Diffstat (limited to 'java/res/anim')
-rw-r--r--java/res/anim/alt_code_key_while_typing_fadein.xml26
-rw-r--r--java/res/anim/alt_code_key_while_typing_fadeout.xml26
2 files changed, 52 insertions, 0 deletions
diff --git a/java/res/anim/alt_code_key_while_typing_fadein.xml b/java/res/anim/alt_code_key_while_typing_fadein.xml
new file mode 100644
index 000000000..3f5fd5d48
--- /dev/null
+++ b/java/res/anim/alt_code_key_while_typing_fadein.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+**
+** Copyright 2012, 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.
+*/
+-->
+
+<animator
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:valueType="intType"
+ android:duration="100"
+ android:valueFrom="128"
+ android:valueTo="255" />
diff --git a/java/res/anim/alt_code_key_while_typing_fadeout.xml b/java/res/anim/alt_code_key_while_typing_fadeout.xml
new file mode 100644
index 000000000..88deb3120
--- /dev/null
+++ b/java/res/anim/alt_code_key_while_typing_fadeout.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+**
+** Copyright 2012, 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.
+*/
+-->
+
+<animator
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:valueType="intType"
+ android:duration="400"
+ android:valueFrom="255"
+ android:valueTo="128" />