diff options
author | 2012-11-06 13:49:17 +0900 | |
---|---|---|
committer | 2012-11-06 13:49:17 +0900 | |
commit | 9c739939a31232f2e22e96aa30e2814da9c7725c (patch) | |
tree | 5d038ce248b6979acc4b370fa6b2fded4b35dd0f /java/res/xml-sw768dp-land/anim | |
parent | 555e15a96a00e8829981557d96e9fa7fc5a74f8c (diff) | |
download | latinime-9c739939a31232f2e22e96aa30e2814da9c7725c.tar.gz latinime-9c739939a31232f2e22e96aa30e2814da9c7725c.tar.xz latinime-9c739939a31232f2e22e96aa30e2814da9c7725c.zip |
Add missing res dir
Change-Id: I50e79bbb1f2eab33c7e5a76086bbe41f7e757ada
Diffstat (limited to 'java/res/xml-sw768dp-land/anim')
5 files changed, 140 insertions, 0 deletions
diff --git a/java/res/xml-sw768dp-land/anim/alt_code_key_while_typing_fadein.xml b/java/res/xml-sw768dp-land/anim/alt_code_key_while_typing_fadein.xml new file mode 100644 index 000000000..079c98090 --- /dev/null +++ b/java/res/xml-sw768dp-land/anim/alt_code_key_while_typing_fadein.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. +*/ +--> + +<objectAnimator + xmlns:android="http://schemas.android.com/apk/res/android" + android:propertyName="altCodeKeyWhileTypingAnimAlpha" + android:valueType="intType" + android:duration="1000" + android:valueFrom="128" + android:valueTo="255" /> diff --git a/java/res/xml-sw768dp-land/anim/alt_code_key_while_typing_fadeout.xml b/java/res/xml-sw768dp-land/anim/alt_code_key_while_typing_fadeout.xml new file mode 100644 index 000000000..511e13886 --- /dev/null +++ b/java/res/xml-sw768dp-land/anim/alt_code_key_while_typing_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. +*/ +--> + +<objectAnimator + xmlns:android="http://schemas.android.com/apk/res/android" + android:propertyName="altCodeKeyWhileTypingAnimAlpha" + android:valueType="intType" + android:duration="3000" + android:valueFrom="255" + android:valueTo="128" /> diff --git a/java/res/xml-sw768dp-land/anim/language_on_spacebar_fadeout.xml b/java/res/xml-sw768dp-land/anim/language_on_spacebar_fadeout.xml new file mode 100644 index 000000000..531f440cc --- /dev/null +++ b/java/res/xml-sw768dp-land/anim/language_on_spacebar_fadeout.xml @@ -0,0 +1,28 @@ +<?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. +*/ +--> + +<objectAnimator + xmlns:android="http://schemas.android.com/apk/res/android" + android:propertyName="languageOnSpacebarAnimAlpha" + android:valueType="intType" + android:startOffset="1200" + android:duration="200" + android:valueFrom="255" + android:valueTo="@integer/config_language_on_spacebar_final_alpha" /> diff --git a/java/res/xml-sw768dp-land/anim/more_keys_keyboard_fadein.xml b/java/res/xml-sw768dp-land/anim/more_keys_keyboard_fadein.xml new file mode 100644 index 000000000..c781f36ad --- /dev/null +++ b/java/res/xml-sw768dp-land/anim/more_keys_keyboard_fadein.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2010, 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:interpolator="@android:anim/decelerate_interpolator" +> + <alpha + android:fromAlpha="0.5" + android:toAlpha="1.0" + android:duration="@integer/config_more_keys_keyboard_fadein_anim_time" /> +</set> diff --git a/java/res/xml-sw768dp-land/anim/more_keys_keyboard_fadeout.xml b/java/res/xml-sw768dp-land/anim/more_keys_keyboard_fadeout.xml new file mode 100644 index 000000000..32fae6bd8 --- /dev/null +++ b/java/res/xml-sw768dp-land/anim/more_keys_keyboard_fadeout.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2010, 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:interpolator="@android:anim/accelerate_interpolator" +> + <alpha + android:fromAlpha="1.0" + android:toAlpha="0.0" + android:duration="@integer/config_more_keys_keyboard_fadeout_anim_time" /> +</set> |