2011-05-18 00:03:25 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.accessibility;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.text.TextUtils;
|
2012-02-28 18:01:40 +00:00
|
|
|
import android.util.Log;
|
2012-06-29 07:32:45 +00:00
|
|
|
import android.util.SparseIntArray;
|
2012-05-31 23:15:21 +00:00
|
|
|
import android.view.inputmethod.EditorInfo;
|
2011-05-18 00:03:25 +00:00
|
|
|
|
2011-06-23 12:23:44 +00:00
|
|
|
import com.android.inputmethod.keyboard.Key;
|
2011-05-18 00:03:25 +00:00
|
|
|
import com.android.inputmethod.keyboard.Keyboard;
|
|
|
|
import com.android.inputmethod.keyboard.KeyboardId;
|
2012-10-29 05:46:34 +00:00
|
|
|
import com.android.inputmethod.latin.Constants;
|
2011-05-18 00:03:25 +00:00
|
|
|
import com.android.inputmethod.latin.R;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.CollectionUtils;
|
2011-05-18 00:03:25 +00:00
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
2012-09-27 09:16:16 +00:00
|
|
|
public final class KeyCodeDescriptionMapper {
|
2012-02-28 18:01:40 +00:00
|
|
|
private static final String TAG = KeyCodeDescriptionMapper.class.getSimpleName();
|
|
|
|
|
2011-08-08 18:05:04 +00:00
|
|
|
// The resource ID of the string spoken for obscured keys
|
|
|
|
private static final int OBSCURED_KEY_RES_ID = R.string.spoken_description_dot;
|
|
|
|
|
2011-05-18 00:03:25 +00:00
|
|
|
private static KeyCodeDescriptionMapper sInstance = new KeyCodeDescriptionMapper();
|
|
|
|
|
|
|
|
// Map of key labels to spoken description resource IDs
|
2012-08-21 07:34:55 +00:00
|
|
|
private final HashMap<CharSequence, Integer> mKeyLabelMap = CollectionUtils.newHashMap();
|
2011-05-18 00:03:25 +00:00
|
|
|
|
2012-06-29 07:32:45 +00:00
|
|
|
// Sparse array of spoken description resource IDs indexed by key codes
|
|
|
|
private final SparseIntArray mKeyCodeMap;
|
2011-05-18 00:03:25 +00:00
|
|
|
|
2011-12-15 10:32:11 +00:00
|
|
|
public static void init() {
|
|
|
|
sInstance.initInternal();
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static KeyCodeDescriptionMapper getInstance() {
|
|
|
|
return sInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
private KeyCodeDescriptionMapper() {
|
2012-06-29 07:32:45 +00:00
|
|
|
mKeyCodeMap = new SparseIntArray();
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
|
|
|
|
2011-12-15 10:32:11 +00:00
|
|
|
private void initInternal() {
|
2011-05-18 00:03:25 +00:00
|
|
|
// Special non-character codes defined in Keyboard
|
2012-10-29 05:46:34 +00:00
|
|
|
mKeyCodeMap.put(Constants.CODE_SPACE, R.string.spoken_description_space);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_DELETE, R.string.spoken_description_delete);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_ENTER, R.string.spoken_description_return);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_SETTINGS, R.string.spoken_description_settings);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_SHIFT, R.string.spoken_description_shift);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_SHORTCUT, R.string.spoken_description_mic);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_SWITCH_ALPHA_SYMBOL, R.string.spoken_description_to_symbol);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_TAB, R.string.spoken_description_tab);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_LANGUAGE_SWITCH,
|
|
|
|
R.string.spoken_description_language_switch);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_ACTION_NEXT, R.string.spoken_description_action_next);
|
|
|
|
mKeyCodeMap.put(Constants.CODE_ACTION_PREVIOUS,
|
|
|
|
R.string.spoken_description_action_previous);
|
2014-03-25 02:57:41 +00:00
|
|
|
mKeyCodeMap.put(Constants.CODE_EMOJI, R.string.spoken_description_emoji);
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the localized description of the action performed by a specified
|
|
|
|
* key based on the current keyboard state.
|
|
|
|
* <p>
|
|
|
|
* The order of precedence for key descriptions is:
|
|
|
|
* <ol>
|
|
|
|
* <li>Manually-defined based on the key label</li>
|
|
|
|
* <li>Automatic or manually-defined based on the key code</li>
|
|
|
|
* <li>Automatically based on the key label</li>
|
|
|
|
* <li>{code null} for keys with no label or key code defined</li>
|
|
|
|
* </p>
|
|
|
|
*
|
|
|
|
* @param context The package's context.
|
|
|
|
* @param keyboard The keyboard on which the key resides.
|
|
|
|
* @param key The key from which to obtain a description.
|
2011-08-08 18:05:04 +00:00
|
|
|
* @param shouldObscure {@true} if text (e.g. non-control) characters should be obscured.
|
2013-01-06 02:10:27 +00:00
|
|
|
* @return a character sequence describing the action performed by pressing the key
|
2011-05-18 00:03:25 +00:00
|
|
|
*/
|
2013-01-06 02:10:27 +00:00
|
|
|
public String getDescriptionForKey(final Context context, final Keyboard keyboard,
|
|
|
|
final Key key, final boolean shouldObscure) {
|
2013-08-12 09:05:11 +00:00
|
|
|
final int code = key.getCode();
|
2012-01-31 21:03:39 +00:00
|
|
|
|
2012-10-29 05:46:34 +00:00
|
|
|
if (code == Constants.CODE_SWITCH_ALPHA_SYMBOL) {
|
2012-02-28 18:01:40 +00:00
|
|
|
final String description = getDescriptionForSwitchAlphaSymbol(context, keyboard);
|
2013-01-06 02:10:27 +00:00
|
|
|
if (description != null) {
|
2011-05-18 00:03:25 +00:00
|
|
|
return description;
|
2013-01-06 02:10:27 +00:00
|
|
|
}
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
|
|
|
|
2012-10-29 05:46:34 +00:00
|
|
|
if (code == Constants.CODE_SHIFT) {
|
2012-01-31 21:03:39 +00:00
|
|
|
return getDescriptionForShiftKey(context, keyboard);
|
|
|
|
}
|
|
|
|
|
2013-02-19 19:45:44 +00:00
|
|
|
if (code == Constants.CODE_ENTER) {
|
|
|
|
// The following function returns the correct description in all action and
|
|
|
|
// regular enter cases, taking care of all modes.
|
2012-05-31 23:15:21 +00:00
|
|
|
return getDescriptionForActionKey(context, keyboard, key);
|
|
|
|
}
|
|
|
|
|
2013-08-12 09:05:11 +00:00
|
|
|
if (!TextUtils.isEmpty(key.getLabel())) {
|
|
|
|
final String label = key.getLabel().trim();
|
2011-05-18 00:03:25 +00:00
|
|
|
|
2011-11-22 01:56:03 +00:00
|
|
|
// First, attempt to map the label to a pre-defined description.
|
2011-05-18 00:03:25 +00:00
|
|
|
if (mKeyLabelMap.containsKey(label)) {
|
|
|
|
return context.getString(mKeyLabelMap.get(label));
|
|
|
|
}
|
2011-11-22 01:56:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Just attempt to speak the description.
|
2013-08-12 09:05:11 +00:00
|
|
|
if (key.getCode() != Constants.CODE_UNSPECIFIED) {
|
2011-08-08 18:05:04 +00:00
|
|
|
return getDescriptionForKeyCode(context, keyboard, key, shouldObscure);
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a context-specific description for the CODE_SWITCH_ALPHA_SYMBOL
|
|
|
|
* key or {@code null} if there is not a description provided for the
|
|
|
|
* current keyboard context.
|
|
|
|
*
|
|
|
|
* @param context The package's context.
|
|
|
|
* @param keyboard The keyboard on which the key resides.
|
2013-01-06 02:10:27 +00:00
|
|
|
* @return a character sequence describing the action performed by pressing the key
|
2011-05-18 00:03:25 +00:00
|
|
|
*/
|
2013-01-06 02:10:27 +00:00
|
|
|
private String getDescriptionForSwitchAlphaSymbol(final Context context,
|
|
|
|
final Keyboard keyboard) {
|
2012-02-07 21:14:18 +00:00
|
|
|
final KeyboardId keyboardId = keyboard.mId;
|
|
|
|
final int elementId = keyboardId.mElementId;
|
|
|
|
final int resId;
|
|
|
|
|
|
|
|
switch (elementId) {
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET:
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED:
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_MANUAL_SHIFTED:
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCK_SHIFTED:
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCKED:
|
|
|
|
resId = R.string.spoken_description_to_symbol;
|
|
|
|
break;
|
|
|
|
case KeyboardId.ELEMENT_SYMBOLS:
|
2013-09-04 03:57:04 +00:00
|
|
|
case KeyboardId.ELEMENT_SYMBOLS_SHIFTED:
|
2012-02-07 21:14:18 +00:00
|
|
|
resId = R.string.spoken_description_to_alpha;
|
|
|
|
break;
|
|
|
|
case KeyboardId.ELEMENT_PHONE:
|
|
|
|
resId = R.string.spoken_description_to_symbol;
|
|
|
|
break;
|
|
|
|
case KeyboardId.ELEMENT_PHONE_SYMBOLS:
|
|
|
|
resId = R.string.spoken_description_to_numeric;
|
|
|
|
break;
|
|
|
|
default:
|
2012-02-28 18:01:40 +00:00
|
|
|
Log.e(TAG, "Missing description for keyboard element ID:" + elementId);
|
2011-05-18 00:03:25 +00:00
|
|
|
return null;
|
|
|
|
}
|
2012-02-07 21:14:18 +00:00
|
|
|
return context.getString(resId);
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
|
|
|
|
2012-01-31 21:03:39 +00:00
|
|
|
/**
|
|
|
|
* Returns a context-sensitive description of the "Shift" key.
|
|
|
|
*
|
|
|
|
* @param context The package's context.
|
|
|
|
* @param keyboard The keyboard on which the key resides.
|
|
|
|
* @return A context-sensitive description of the "Shift" key.
|
|
|
|
*/
|
2013-01-06 02:10:27 +00:00
|
|
|
private String getDescriptionForShiftKey(final Context context, final Keyboard keyboard) {
|
2012-02-07 21:14:18 +00:00
|
|
|
final KeyboardId keyboardId = keyboard.mId;
|
|
|
|
final int elementId = keyboardId.mElementId;
|
2012-01-31 21:03:39 +00:00
|
|
|
final int resId;
|
|
|
|
|
2012-02-07 21:14:18 +00:00
|
|
|
switch (elementId) {
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCK_SHIFTED:
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCKED:
|
2012-01-31 21:03:39 +00:00
|
|
|
resId = R.string.spoken_description_caps_lock;
|
2012-02-07 21:14:18 +00:00
|
|
|
break;
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED:
|
|
|
|
case KeyboardId.ELEMENT_ALPHABET_MANUAL_SHIFTED:
|
2013-09-04 03:57:04 +00:00
|
|
|
case KeyboardId.ELEMENT_SYMBOLS_SHIFTED:
|
2012-01-31 21:03:39 +00:00
|
|
|
resId = R.string.spoken_description_shift_shifted;
|
2012-02-07 21:14:18 +00:00
|
|
|
break;
|
|
|
|
default:
|
2012-01-31 21:03:39 +00:00
|
|
|
resId = R.string.spoken_description_shift;
|
|
|
|
}
|
|
|
|
return context.getString(resId);
|
|
|
|
}
|
|
|
|
|
2012-05-31 23:15:21 +00:00
|
|
|
/**
|
|
|
|
* Returns a context-sensitive description of the "Enter" action key.
|
|
|
|
*
|
|
|
|
* @param context The package's context.
|
|
|
|
* @param keyboard The keyboard on which the key resides.
|
|
|
|
* @param key The key to describe.
|
2013-01-06 02:10:27 +00:00
|
|
|
* @return Returns a context-sensitive description of the "Enter" action key.
|
2012-05-31 23:15:21 +00:00
|
|
|
*/
|
2013-01-06 02:10:27 +00:00
|
|
|
private String getDescriptionForActionKey(final Context context, final Keyboard keyboard,
|
|
|
|
final Key key) {
|
2012-05-31 23:15:21 +00:00
|
|
|
final KeyboardId keyboardId = keyboard.mId;
|
2013-01-15 08:56:37 +00:00
|
|
|
final int actionId = keyboardId.imeAction();
|
2012-05-31 23:15:21 +00:00
|
|
|
final int resId;
|
|
|
|
|
|
|
|
// Always use the label, if available.
|
2013-08-12 09:05:11 +00:00
|
|
|
if (!TextUtils.isEmpty(key.getLabel())) {
|
|
|
|
return key.getLabel().trim();
|
2012-05-31 23:15:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, use the action ID.
|
|
|
|
switch (actionId) {
|
|
|
|
case EditorInfo.IME_ACTION_SEARCH:
|
|
|
|
resId = R.string.spoken_description_search;
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_GO:
|
|
|
|
resId = R.string.label_go_key;
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_SEND:
|
|
|
|
resId = R.string.label_send_key;
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_NEXT:
|
|
|
|
resId = R.string.label_next_key;
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_DONE:
|
|
|
|
resId = R.string.label_done_key;
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_PREVIOUS:
|
|
|
|
resId = R.string.label_previous_key;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
resId = R.string.spoken_description_return;
|
|
|
|
}
|
|
|
|
return context.getString(resId);
|
|
|
|
}
|
|
|
|
|
2011-05-18 00:03:25 +00:00
|
|
|
/**
|
|
|
|
* Returns a localized character sequence describing what will happen when
|
|
|
|
* the specified key is pressed based on its key code.
|
|
|
|
* <p>
|
|
|
|
* The order of precedence for key code descriptions is:
|
|
|
|
* <ol>
|
|
|
|
* <li>Manually-defined shift-locked description</li>
|
|
|
|
* <li>Manually-defined shifted description</li>
|
|
|
|
* <li>Manually-defined normal description</li>
|
|
|
|
* <li>Automatic based on the character represented by the key code</li>
|
|
|
|
* <li>Fall-back for undefined or control characters</li>
|
|
|
|
* </ol>
|
|
|
|
* </p>
|
|
|
|
*
|
|
|
|
* @param context The package's context.
|
|
|
|
* @param keyboard The keyboard on which the key resides.
|
|
|
|
* @param key The key from which to obtain a description.
|
2011-08-08 18:05:04 +00:00
|
|
|
* @param shouldObscure {@true} if text (e.g. non-control) characters should be obscured.
|
2013-01-06 02:10:27 +00:00
|
|
|
* @return a character sequence describing the action performed by pressing the key
|
2011-05-18 00:03:25 +00:00
|
|
|
*/
|
2013-01-06 02:10:27 +00:00
|
|
|
private String getDescriptionForKeyCode(final Context context, final Keyboard keyboard,
|
|
|
|
final Key key, final boolean shouldObscure) {
|
2013-08-12 09:05:11 +00:00
|
|
|
final int code = key.getCode();
|
2011-05-18 00:03:25 +00:00
|
|
|
|
2011-08-08 18:05:04 +00:00
|
|
|
// If the key description should be obscured, now is the time to do it.
|
|
|
|
final boolean isDefinedNonCtrl = Character.isDefined(code) && !Character.isISOControl(code);
|
|
|
|
if (shouldObscure && isDefinedNonCtrl) {
|
|
|
|
return context.getString(OBSCURED_KEY_RES_ID);
|
|
|
|
}
|
2012-07-25 18:03:41 +00:00
|
|
|
if (mKeyCodeMap.indexOfKey(code) >= 0) {
|
2011-05-18 00:03:25 +00:00
|
|
|
return context.getString(mKeyCodeMap.get(code));
|
2013-01-06 02:10:27 +00:00
|
|
|
}
|
|
|
|
if (isDefinedNonCtrl) {
|
2011-05-18 00:03:25 +00:00
|
|
|
return Character.toString((char) code);
|
2013-01-06 02:10:27 +00:00
|
|
|
}
|
2013-08-12 09:05:11 +00:00
|
|
|
if (!TextUtils.isEmpty(key.getLabel())) {
|
|
|
|
return key.getLabel();
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
2013-01-06 02:10:27 +00:00
|
|
|
return context.getString(R.string.spoken_description_unknown, code);
|
2011-05-18 00:03:25 +00:00
|
|
|
}
|
|
|
|
}
|