diff options
author | 2012-03-14 12:33:03 +0900 | |
---|---|---|
committer | 2012-03-14 13:08:27 +0900 | |
commit | d7c4ba170982ddce5ac12ea92c3c3d8b53d524ba (patch) | |
tree | 73181d3ebda87f7432af294f2dcb624e38377406 /java/res/anim | |
parent | 9319e94606a2edde52c97f00977228f909ace4b4 (diff) | |
download | latinime-d7c4ba170982ddce5ac12ea92c3c3d8b53d524ba.tar.gz latinime-d7c4ba170982ddce5ac12ea92c3c3d8b53d524ba.tar.xz latinime-d7c4ba170982ddce5ac12ea92c3c3d8b53d524ba.zip |
Use XML animator definition
Change-Id: Ic2f6d3f8fdd2c0b0a00f004f49f95b00d474ee4b
Diffstat (limited to 'java/res/anim')
-rw-r--r-- | java/res/anim/language_on_spacebar_fadeout.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/java/res/anim/language_on_spacebar_fadeout.xml b/java/res/anim/language_on_spacebar_fadeout.xml new file mode 100644 index 000000000..f66e1627b --- /dev/null +++ b/java/res/anim/language_on_spacebar_fadeout.xml @@ -0,0 +1,27 @@ +<?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:startOffset="1200" + android:duration="200" + android:valueFrom="255" + android:valueTo="128" /> |