diff options
author | 2012-07-19 12:33:51 +0900 | |
---|---|---|
committer | 2012-07-19 16:33:09 +0900 | |
commit | 918e420d1becc1389b9895538eceff85fe882c99 (patch) | |
tree | e8ee6c97574f51a469c18c6fc5042fa2ebeb85ec /java/res | |
parent | 57f7de0ba664187e13bcea5adff7f5f65eddd823 (diff) | |
download | latinime-918e420d1becc1389b9895538eceff85fe882c99.tar.gz latinime-918e420d1becc1389b9895538eceff85fe882c99.tar.xz latinime-918e420d1becc1389b9895538eceff85fe882c99.zip |
Gesture input should be turned off depending on the configuration
The gesture input will be disabled when
* It is AOSP build.
* Accessibility mode is on.
* The input field is password mode.
Bug: 6844755
Bug: 6844763
Bug: 6845011
Change-Id: I74972cc765d15c08059e0c9014f863ffb2a57c6c
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values/gesture-input.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/java/res/values/gesture-input.xml b/java/res/values/gesture-input.xml new file mode 100644 index 000000000..235616fbe --- /dev/null +++ b/java/res/values/gesture-input.xml @@ -0,0 +1,22 @@ +<?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. +*/ +--> +<resources> + <bool name="config_gesture_input_enabled_by_build_config">false</bool> +</resources> |