29d5973fd3
This change also removes per-Key verticalGap and horizontalGap. Change-Id: Id4d2129022fbbfbf5d740b8d1257032c945bb775
1359 lines
59 KiB
Java
1359 lines
59 KiB
Java
/*
|
|
* Copyright (C) 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.
|
|
*/
|
|
|
|
package com.android.inputmethod.keyboard;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.content.res.TypedArray;
|
|
import android.content.res.XmlResourceParser;
|
|
import android.graphics.Typeface;
|
|
import android.util.AttributeSet;
|
|
import android.util.DisplayMetrics;
|
|
import android.util.Log;
|
|
import android.util.SparseArray;
|
|
import android.util.SparseIntArray;
|
|
import android.util.TypedValue;
|
|
import android.util.Xml;
|
|
import android.view.InflateException;
|
|
|
|
import com.android.inputmethod.keyboard.internal.KeyStyles;
|
|
import com.android.inputmethod.keyboard.internal.KeyboardCodesSet;
|
|
import com.android.inputmethod.keyboard.internal.KeyboardIconsSet;
|
|
import com.android.inputmethod.keyboard.internal.KeyboardTextsSet;
|
|
import com.android.inputmethod.latin.CollectionUtils;
|
|
import com.android.inputmethod.latin.LatinImeLogger;
|
|
import com.android.inputmethod.latin.LocaleUtils.RunInLocale;
|
|
import com.android.inputmethod.latin.R;
|
|
import com.android.inputmethod.latin.ResourceUtils;
|
|
import com.android.inputmethod.latin.StringUtils;
|
|
import com.android.inputmethod.latin.SubtypeLocale;
|
|
import com.android.inputmethod.latin.XmlParseUtils;
|
|
|
|
import org.xmlpull.v1.XmlPullParser;
|
|
import org.xmlpull.v1.XmlPullParserException;
|
|
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.HashSet;
|
|
import java.util.Locale;
|
|
|
|
/**
|
|
* Loads an XML description of a keyboard and stores the attributes of the keys. A keyboard
|
|
* consists of rows of keys.
|
|
* <p>The layout file for a keyboard contains XML that looks like the following snippet:</p>
|
|
* <pre>
|
|
* <Keyboard
|
|
* latin:keyWidth="%10p"
|
|
* latin:keyHeight="50px"
|
|
* latin:horizontalGap="2px"
|
|
* latin:verticalGap="2px" >
|
|
* <Row latin:keyWidth="32px" >
|
|
* <Key latin:keyLabel="A" />
|
|
* ...
|
|
* </Row>
|
|
* ...
|
|
* </Keyboard>
|
|
* </pre>
|
|
*/
|
|
public class Keyboard {
|
|
private static final String TAG = Keyboard.class.getSimpleName();
|
|
|
|
/** Some common keys code. Must be positive.
|
|
* These should be aligned with values/keycodes.xml
|
|
*/
|
|
public static final int CODE_ENTER = '\n';
|
|
public static final int CODE_TAB = '\t';
|
|
public static final int CODE_SPACE = ' ';
|
|
public static final int CODE_PERIOD = '.';
|
|
public static final int CODE_DASH = '-';
|
|
public static final int CODE_SINGLE_QUOTE = '\'';
|
|
public static final int CODE_DOUBLE_QUOTE = '"';
|
|
// TODO: Check how this should work for right-to-left languages. It seems to stand
|
|
// that for rtl languages, a closing parenthesis is a left parenthesis. Is this
|
|
// managed by the font? Or is it a different char?
|
|
public static final int CODE_CLOSING_PARENTHESIS = ')';
|
|
public static final int CODE_CLOSING_SQUARE_BRACKET = ']';
|
|
public static final int CODE_CLOSING_CURLY_BRACKET = '}';
|
|
public static final int CODE_CLOSING_ANGLE_BRACKET = '>';
|
|
|
|
/** Special keys code. Must be negative.
|
|
* These should be aligned with KeyboardCodesSet.ID_TO_NAME[],
|
|
* KeyboardCodesSet.DEFAULT[] and KeyboardCodesSet.RTL[]
|
|
*/
|
|
public static final int CODE_SHIFT = -1;
|
|
public static final int CODE_SWITCH_ALPHA_SYMBOL = -2;
|
|
public static final int CODE_OUTPUT_TEXT = -3;
|
|
public static final int CODE_DELETE = -4;
|
|
public static final int CODE_SETTINGS = -5;
|
|
public static final int CODE_SHORTCUT = -6;
|
|
public static final int CODE_ACTION_ENTER = -7;
|
|
public static final int CODE_ACTION_NEXT = -8;
|
|
public static final int CODE_ACTION_PREVIOUS = -9;
|
|
public static final int CODE_LANGUAGE_SWITCH = -10;
|
|
public static final int CODE_RESEARCH = -11;
|
|
// Code value representing the code is not specified.
|
|
public static final int CODE_UNSPECIFIED = -12;
|
|
|
|
public final KeyboardId mId;
|
|
public final int mThemeId;
|
|
|
|
/** Total height of the keyboard, including the padding and keys */
|
|
public final int mOccupiedHeight;
|
|
/** Total width of the keyboard, including the padding and keys */
|
|
public final int mOccupiedWidth;
|
|
|
|
/** The padding above the keyboard */
|
|
public final int mTopPadding;
|
|
/** Default gap between rows */
|
|
public final int mVerticalGap;
|
|
|
|
/** Per keyboard key visual parameters */
|
|
public final Typeface mKeyTypeface;
|
|
public final float mKeyLetterRatio;
|
|
public final int mKeyLetterSize;
|
|
public final float mKeyHintLetterRatio;
|
|
public final float mKeyShiftedLetterHintRatio;
|
|
|
|
public final int mMostCommonKeyHeight;
|
|
public final int mMostCommonKeyWidth;
|
|
|
|
/** More keys keyboard template */
|
|
public final int mMoreKeysTemplate;
|
|
|
|
/** Maximum column for more keys keyboard */
|
|
public final int mMaxMoreKeysKeyboardColumn;
|
|
|
|
/** Array of keys and icons in this keyboard */
|
|
public final Key[] mKeys;
|
|
public final Key[] mShiftKeys;
|
|
public final Key[] mAltCodeKeysWhileTyping;
|
|
public final KeyboardIconsSet mIconsSet;
|
|
|
|
private final SparseArray<Key> mKeyCache = CollectionUtils.newSparseArray();
|
|
|
|
private final ProximityInfo mProximityInfo;
|
|
private final boolean mProximityCharsCorrectionEnabled;
|
|
|
|
public Keyboard(Params params) {
|
|
mId = params.mId;
|
|
mThemeId = params.mThemeId;
|
|
mOccupiedHeight = params.mOccupiedHeight;
|
|
mOccupiedWidth = params.mOccupiedWidth;
|
|
mMostCommonKeyHeight = params.mMostCommonKeyHeight;
|
|
mMostCommonKeyWidth = params.mMostCommonKeyWidth;
|
|
mMoreKeysTemplate = params.mMoreKeysTemplate;
|
|
mMaxMoreKeysKeyboardColumn = params.mMaxMoreKeysKeyboardColumn;
|
|
|
|
mKeyTypeface = params.mKeyTypeface;
|
|
mKeyLetterRatio = params.mKeyLetterRatio;
|
|
mKeyLetterSize = params.mKeyLetterSize;
|
|
mKeyHintLetterRatio = params.mKeyHintLetterRatio;
|
|
mKeyShiftedLetterHintRatio = params.mKeyShiftedLetterHintRatio;
|
|
|
|
mTopPadding = params.mTopPadding;
|
|
mVerticalGap = params.mVerticalGap;
|
|
|
|
mKeys = params.mKeys.toArray(new Key[params.mKeys.size()]);
|
|
mShiftKeys = params.mShiftKeys.toArray(new Key[params.mShiftKeys.size()]);
|
|
mAltCodeKeysWhileTyping = params.mAltCodeKeysWhileTyping.toArray(
|
|
new Key[params.mAltCodeKeysWhileTyping.size()]);
|
|
mIconsSet = params.mIconsSet;
|
|
|
|
mProximityInfo = new ProximityInfo(params.mId.mLocale.toString(),
|
|
params.GRID_WIDTH, params.GRID_HEIGHT, mOccupiedWidth, mOccupiedHeight,
|
|
mMostCommonKeyWidth, mMostCommonKeyHeight, mKeys, params.mTouchPositionCorrection);
|
|
mProximityCharsCorrectionEnabled = params.mProximityCharsCorrectionEnabled;
|
|
}
|
|
|
|
public boolean hasProximityCharsCorrection(int code) {
|
|
if (!mProximityCharsCorrectionEnabled) {
|
|
return false;
|
|
}
|
|
// Note: The native code has the main keyboard layout only at this moment.
|
|
// TODO: Figure out how to handle proximity characters information of all layouts.
|
|
final boolean canAssumeNativeHasProximityCharsInfoOfAllKeys = (
|
|
mId.mElementId == KeyboardId.ELEMENT_ALPHABET
|
|
|| mId.mElementId == KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED);
|
|
return canAssumeNativeHasProximityCharsInfoOfAllKeys || Character.isLetter(code);
|
|
}
|
|
|
|
public ProximityInfo getProximityInfo() {
|
|
return mProximityInfo;
|
|
}
|
|
|
|
public Key getKey(int code) {
|
|
if (code == CODE_UNSPECIFIED) {
|
|
return null;
|
|
}
|
|
synchronized (mKeyCache) {
|
|
final int index = mKeyCache.indexOfKey(code);
|
|
if (index >= 0) {
|
|
return mKeyCache.valueAt(index);
|
|
}
|
|
|
|
for (final Key key : mKeys) {
|
|
if (key.mCode == code) {
|
|
mKeyCache.put(code, key);
|
|
return key;
|
|
}
|
|
}
|
|
mKeyCache.put(code, null);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public boolean hasKey(Key aKey) {
|
|
if (mKeyCache.indexOfValue(aKey) >= 0) {
|
|
return true;
|
|
}
|
|
|
|
for (final Key key : mKeys) {
|
|
if (key == aKey) {
|
|
mKeyCache.put(key.mCode, key);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static boolean isLetterCode(int code) {
|
|
return code >= CODE_SPACE;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return mId.toString();
|
|
}
|
|
|
|
// TODO: Move this class to internal package
|
|
public static class Params {
|
|
public KeyboardId mId;
|
|
public int mThemeId;
|
|
|
|
/** Total height and width of the keyboard, including the paddings and keys */
|
|
public int mOccupiedHeight;
|
|
public int mOccupiedWidth;
|
|
|
|
/** Base height and width of the keyboard used to calculate rows' or keys' heights and
|
|
* widths
|
|
*/
|
|
public int mBaseHeight;
|
|
public int mBaseWidth;
|
|
|
|
public int mTopPadding;
|
|
public int mBottomPadding;
|
|
public int mHorizontalEdgesPadding;
|
|
public int mHorizontalCenterPadding;
|
|
|
|
public Typeface mKeyTypeface = null;
|
|
public float mKeyLetterRatio = ResourceUtils.UNDEFINED_RATIO;
|
|
public int mKeyLetterSize = ResourceUtils.UNDEFINED_DIMENSION;
|
|
public float mKeyHintLetterRatio = ResourceUtils.UNDEFINED_RATIO;;
|
|
public float mKeyShiftedLetterHintRatio = ResourceUtils.UNDEFINED_RATIO;
|
|
|
|
public int mDefaultRowHeight;
|
|
public int mDefaultKeyWidth;
|
|
public int mHorizontalGap;
|
|
public int mVerticalGap;
|
|
|
|
public int mMoreKeysTemplate;
|
|
public int mMaxMoreKeysKeyboardColumn;
|
|
|
|
public int GRID_WIDTH;
|
|
public int GRID_HEIGHT;
|
|
|
|
public final HashSet<Key> mKeys = CollectionUtils.newHashSet();
|
|
public final ArrayList<Key> mShiftKeys = CollectionUtils.newArrayList();
|
|
public final ArrayList<Key> mAltCodeKeysWhileTyping = CollectionUtils.newArrayList();
|
|
public final KeyboardIconsSet mIconsSet = new KeyboardIconsSet();
|
|
public final KeyboardCodesSet mCodesSet = new KeyboardCodesSet();
|
|
public final KeyboardTextsSet mTextsSet = new KeyboardTextsSet();
|
|
public final KeyStyles mKeyStyles = new KeyStyles(mTextsSet);
|
|
|
|
public KeyboardLayoutSet.KeysCache mKeysCache;
|
|
|
|
public int mMostCommonKeyHeight = 0;
|
|
public int mMostCommonKeyWidth = 0;
|
|
|
|
public boolean mProximityCharsCorrectionEnabled;
|
|
|
|
public final TouchPositionCorrection mTouchPositionCorrection =
|
|
new TouchPositionCorrection();
|
|
|
|
public static class TouchPositionCorrection {
|
|
private static final int TOUCH_POSITION_CORRECTION_RECORD_SIZE = 3;
|
|
|
|
public boolean mEnabled;
|
|
public float[] mXs;
|
|
public float[] mYs;
|
|
public float[] mRadii;
|
|
|
|
public void load(String[] data) {
|
|
final int dataLength = data.length;
|
|
if (dataLength % TOUCH_POSITION_CORRECTION_RECORD_SIZE != 0) {
|
|
if (LatinImeLogger.sDBG) {
|
|
throw new RuntimeException(
|
|
"the size of touch position correction data is invalid");
|
|
}
|
|
return;
|
|
}
|
|
|
|
final int length = dataLength / TOUCH_POSITION_CORRECTION_RECORD_SIZE;
|
|
mXs = new float[length];
|
|
mYs = new float[length];
|
|
mRadii = new float[length];
|
|
try {
|
|
for (int i = 0; i < dataLength; ++i) {
|
|
final int type = i % TOUCH_POSITION_CORRECTION_RECORD_SIZE;
|
|
final int index = i / TOUCH_POSITION_CORRECTION_RECORD_SIZE;
|
|
final float value = Float.parseFloat(data[i]);
|
|
if (type == 0) {
|
|
mXs[index] = value;
|
|
} else if (type == 1) {
|
|
mYs[index] = value;
|
|
} else {
|
|
mRadii[index] = value;
|
|
}
|
|
}
|
|
} catch (NumberFormatException e) {
|
|
if (LatinImeLogger.sDBG) {
|
|
throw new RuntimeException(
|
|
"the number format for touch position correction data is invalid");
|
|
}
|
|
mXs = null;
|
|
mYs = null;
|
|
mRadii = null;
|
|
}
|
|
}
|
|
|
|
// TODO: Remove this method.
|
|
public void setEnabled(boolean enabled) {
|
|
mEnabled = enabled;
|
|
}
|
|
|
|
public boolean isValid() {
|
|
return mEnabled && mXs != null && mYs != null && mRadii != null
|
|
&& mXs.length > 0 && mYs.length > 0 && mRadii.length > 0;
|
|
}
|
|
}
|
|
|
|
protected void clearKeys() {
|
|
mKeys.clear();
|
|
mShiftKeys.clear();
|
|
clearHistogram();
|
|
}
|
|
|
|
public void onAddKey(Key newKey) {
|
|
final Key key = (mKeysCache != null) ? mKeysCache.get(newKey) : newKey;
|
|
final boolean zeroWidthSpacer = key.isSpacer() && key.mWidth == 0;
|
|
if (!zeroWidthSpacer) {
|
|
mKeys.add(key);
|
|
updateHistogram(key);
|
|
}
|
|
if (key.mCode == Keyboard.CODE_SHIFT) {
|
|
mShiftKeys.add(key);
|
|
}
|
|
if (key.altCodeWhileTyping()) {
|
|
mAltCodeKeysWhileTyping.add(key);
|
|
}
|
|
}
|
|
|
|
private int mMaxHeightCount = 0;
|
|
private int mMaxWidthCount = 0;
|
|
private final SparseIntArray mHeightHistogram = new SparseIntArray();
|
|
private final SparseIntArray mWidthHistogram = new SparseIntArray();
|
|
|
|
private void clearHistogram() {
|
|
mMostCommonKeyHeight = 0;
|
|
mMaxHeightCount = 0;
|
|
mHeightHistogram.clear();
|
|
|
|
mMaxWidthCount = 0;
|
|
mMostCommonKeyWidth = 0;
|
|
mWidthHistogram.clear();
|
|
}
|
|
|
|
private static int updateHistogramCounter(SparseIntArray histogram, int key) {
|
|
final int index = histogram.indexOfKey(key);
|
|
final int count = (index >= 0 ? histogram.get(key) : 0) + 1;
|
|
histogram.put(key, count);
|
|
return count;
|
|
}
|
|
|
|
private void updateHistogram(Key key) {
|
|
final int height = key.mHeight + mVerticalGap;
|
|
final int heightCount = updateHistogramCounter(mHeightHistogram, height);
|
|
if (heightCount > mMaxHeightCount) {
|
|
mMaxHeightCount = heightCount;
|
|
mMostCommonKeyHeight = height;
|
|
}
|
|
|
|
final int width = key.mWidth + mHorizontalGap;
|
|
final int widthCount = updateHistogramCounter(mWidthHistogram, width);
|
|
if (widthCount > mMaxWidthCount) {
|
|
mMaxWidthCount = widthCount;
|
|
mMostCommonKeyWidth = width;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the array of the keys that are closest to the given point.
|
|
* @param x the x-coordinate of the point
|
|
* @param y the y-coordinate of the point
|
|
* @return the array of the nearest keys to the given point. If the given
|
|
* point is out of range, then an array of size zero is returned.
|
|
*/
|
|
public Key[] getNearestKeys(int x, int y) {
|
|
// Avoid dead pixels at edges of the keyboard
|
|
final int adjustedX = Math.max(0, Math.min(x, mOccupiedWidth - 1));
|
|
final int adjustedY = Math.max(0, Math.min(y, mOccupiedHeight - 1));
|
|
return mProximityInfo.getNearestKeys(adjustedX, adjustedY);
|
|
}
|
|
|
|
public static String printableCode(int code) {
|
|
switch (code) {
|
|
case CODE_SHIFT: return "shift";
|
|
case CODE_SWITCH_ALPHA_SYMBOL: return "symbol";
|
|
case CODE_OUTPUT_TEXT: return "text";
|
|
case CODE_DELETE: return "delete";
|
|
case CODE_SETTINGS: return "settings";
|
|
case CODE_SHORTCUT: return "shortcut";
|
|
case CODE_ACTION_ENTER: return "actionEnter";
|
|
case CODE_ACTION_NEXT: return "actionNext";
|
|
case CODE_ACTION_PREVIOUS: return "actionPrevious";
|
|
case CODE_LANGUAGE_SWITCH: return "languageSwitch";
|
|
case CODE_UNSPECIFIED: return "unspec";
|
|
case CODE_TAB: return "tab";
|
|
case CODE_ENTER: return "enter";
|
|
default:
|
|
if (code <= 0) Log.w(TAG, "Unknown non-positive key code=" + code);
|
|
if (code < CODE_SPACE) return String.format("'\\u%02x'", code);
|
|
if (code < 0x100) return String.format("'%c'", code);
|
|
return String.format("'\\u%04x'", code);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Keyboard Building helper.
|
|
*
|
|
* This class parses Keyboard XML file and eventually build a Keyboard.
|
|
* The Keyboard XML file looks like:
|
|
* <pre>
|
|
* <!-- xml/keyboard.xml -->
|
|
* <Keyboard keyboard_attributes*>
|
|
* <!-- Keyboard Content -->
|
|
* <Row row_attributes*>
|
|
* <!-- Row Content -->
|
|
* <Key key_attributes* />
|
|
* <Spacer horizontalGap="32.0dp" />
|
|
* <include keyboardLayout="@xml/other_keys">
|
|
* ...
|
|
* </Row>
|
|
* <include keyboardLayout="@xml/other_rows">
|
|
* ...
|
|
* </Keyboard>
|
|
* </pre>
|
|
* The XML file which is included in other file must have <merge> as root element,
|
|
* such as:
|
|
* <pre>
|
|
* <!-- xml/other_keys.xml -->
|
|
* <merge>
|
|
* <Key key_attributes* />
|
|
* ...
|
|
* </merge>
|
|
* </pre>
|
|
* and
|
|
* <pre>
|
|
* <!-- xml/other_rows.xml -->
|
|
* <merge>
|
|
* <Row row_attributes*>
|
|
* <Key key_attributes* />
|
|
* </Row>
|
|
* ...
|
|
* </merge>
|
|
* </pre>
|
|
* You can also use switch-case-default tags to select Rows and Keys.
|
|
* <pre>
|
|
* <switch>
|
|
* <case case_attribute*>
|
|
* <!-- Any valid tags at switch position -->
|
|
* </case>
|
|
* ...
|
|
* <default>
|
|
* <!-- Any valid tags at switch position -->
|
|
* </default>
|
|
* </switch>
|
|
* </pre>
|
|
* You can declare Key style and specify styles within Key tags.
|
|
* <pre>
|
|
* <switch>
|
|
* <case mode="email">
|
|
* <key-style styleName="f1-key" parentStyle="modifier-key"
|
|
* keyLabel=".com"
|
|
* />
|
|
* </case>
|
|
* <case mode="url">
|
|
* <key-style styleName="f1-key" parentStyle="modifier-key"
|
|
* keyLabel="http://"
|
|
* />
|
|
* </case>
|
|
* </switch>
|
|
* ...
|
|
* <Key keyStyle="shift-key" ... />
|
|
* </pre>
|
|
*/
|
|
|
|
// TODO: Move this class to internal package.
|
|
public static class Builder<KP extends Params> {
|
|
private static final String BUILDER_TAG = "Keyboard.Builder";
|
|
private static final boolean DEBUG = false;
|
|
|
|
// Keyboard XML Tags
|
|
private static final String TAG_KEYBOARD = "Keyboard";
|
|
private static final String TAG_ROW = "Row";
|
|
private static final String TAG_KEY = "Key";
|
|
private static final String TAG_SPACER = "Spacer";
|
|
private static final String TAG_INCLUDE = "include";
|
|
private static final String TAG_MERGE = "merge";
|
|
private static final String TAG_SWITCH = "switch";
|
|
private static final String TAG_CASE = "case";
|
|
private static final String TAG_DEFAULT = "default";
|
|
public static final String TAG_KEY_STYLE = "key-style";
|
|
|
|
private static final int DEFAULT_KEYBOARD_COLUMNS = 10;
|
|
private static final int DEFAULT_KEYBOARD_ROWS = 4;
|
|
|
|
protected final KP mParams;
|
|
protected final Context mContext;
|
|
protected final Resources mResources;
|
|
private final DisplayMetrics mDisplayMetrics;
|
|
|
|
private int mCurrentY = 0;
|
|
private Row mCurrentRow = null;
|
|
private boolean mLeftEdge;
|
|
private boolean mTopEdge;
|
|
private Key mRightEdgeKey = null;
|
|
|
|
/**
|
|
* Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
|
|
* Some of the key size defaults can be overridden per row from what the {@link Keyboard}
|
|
* defines.
|
|
*/
|
|
public static class Row {
|
|
// keyWidth enum constants
|
|
private static final int KEYWIDTH_NOT_ENUM = 0;
|
|
private static final int KEYWIDTH_FILL_RIGHT = -1;
|
|
|
|
private final Params mParams;
|
|
/** Default width of a key in this row. */
|
|
private float mDefaultKeyWidth;
|
|
/** Default height of a key in this row. */
|
|
public final int mRowHeight;
|
|
/** Default keyLabelFlags in this row. */
|
|
private int mDefaultKeyLabelFlags;
|
|
/** Default backgroundType for this row */
|
|
private int mDefaultBackgroundType;
|
|
|
|
private final int mCurrentY;
|
|
// Will be updated by {@link Key}'s constructor.
|
|
private float mCurrentX;
|
|
|
|
public Row(Resources res, Params params, XmlPullParser parser, int y) {
|
|
mParams = params;
|
|
TypedArray keyboardAttr = res.obtainAttributes(Xml.asAttributeSet(parser),
|
|
R.styleable.Keyboard);
|
|
mRowHeight = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_rowHeight,
|
|
params.mBaseHeight, params.mDefaultRowHeight);
|
|
keyboardAttr.recycle();
|
|
TypedArray keyAttr = res.obtainAttributes(Xml.asAttributeSet(parser),
|
|
R.styleable.Keyboard_Key);
|
|
mDefaultKeyWidth = ResourceUtils.getDimensionOrFraction(keyAttr,
|
|
R.styleable.Keyboard_Key_keyWidth,
|
|
params.mBaseWidth, params.mDefaultKeyWidth);
|
|
mDefaultBackgroundType = keyAttr.getInt(R.styleable.Keyboard_Key_backgroundType,
|
|
Key.BACKGROUND_TYPE_NORMAL);
|
|
keyAttr.recycle();
|
|
|
|
// TODO: Initialize this with <Row> attribute as backgroundType is done.
|
|
mDefaultKeyLabelFlags = 0;
|
|
mCurrentY = y;
|
|
mCurrentX = 0.0f;
|
|
}
|
|
|
|
public float getDefaultKeyWidth() {
|
|
return mDefaultKeyWidth;
|
|
}
|
|
|
|
public void setDefaultKeyWidth(float defaultKeyWidth) {
|
|
mDefaultKeyWidth = defaultKeyWidth;
|
|
}
|
|
|
|
public int getDefaultKeyLabelFlags() {
|
|
return mDefaultKeyLabelFlags;
|
|
}
|
|
|
|
public void setDefaultKeyLabelFlags(int keyLabelFlags) {
|
|
mDefaultKeyLabelFlags = keyLabelFlags;
|
|
}
|
|
|
|
public int getDefaultBackgroundType() {
|
|
return mDefaultBackgroundType;
|
|
}
|
|
|
|
public void setDefaultBackgroundType(int backgroundType) {
|
|
mDefaultBackgroundType = backgroundType;
|
|
}
|
|
|
|
public void setXPos(float keyXPos) {
|
|
mCurrentX = keyXPos;
|
|
}
|
|
|
|
public void advanceXPos(float width) {
|
|
mCurrentX += width;
|
|
}
|
|
|
|
public int getKeyY() {
|
|
return mCurrentY;
|
|
}
|
|
|
|
public float getKeyX(TypedArray keyAttr) {
|
|
final int keyboardRightEdge = mParams.mOccupiedWidth
|
|
- mParams.mHorizontalEdgesPadding;
|
|
if (keyAttr.hasValue(R.styleable.Keyboard_Key_keyXPos)) {
|
|
final float keyXPos = ResourceUtils.getDimensionOrFraction(keyAttr,
|
|
R.styleable.Keyboard_Key_keyXPos, mParams.mBaseWidth, 0);
|
|
if (keyXPos < 0) {
|
|
// If keyXPos is negative, the actual x-coordinate will be
|
|
// keyboardWidth + keyXPos.
|
|
// keyXPos shouldn't be less than mCurrentX because drawable area for this
|
|
// key starts at mCurrentX. Or, this key will overlaps the adjacent key on
|
|
// its left hand side.
|
|
return Math.max(keyXPos + keyboardRightEdge, mCurrentX);
|
|
} else {
|
|
return keyXPos + mParams.mHorizontalEdgesPadding;
|
|
}
|
|
}
|
|
return mCurrentX;
|
|
}
|
|
|
|
public float getKeyWidth(TypedArray keyAttr) {
|
|
return getKeyWidth(keyAttr, mCurrentX);
|
|
}
|
|
|
|
public float getKeyWidth(TypedArray keyAttr, float keyXPos) {
|
|
final int widthType = ResourceUtils.getEnumValue(keyAttr,
|
|
R.styleable.Keyboard_Key_keyWidth, KEYWIDTH_NOT_ENUM);
|
|
switch (widthType) {
|
|
case KEYWIDTH_FILL_RIGHT:
|
|
final int keyboardRightEdge =
|
|
mParams.mOccupiedWidth - mParams.mHorizontalEdgesPadding;
|
|
// If keyWidth is fillRight, the actual key width will be determined to fill
|
|
// out the area up to the right edge of the keyboard.
|
|
return keyboardRightEdge - keyXPos;
|
|
default: // KEYWIDTH_NOT_ENUM
|
|
return ResourceUtils.getDimensionOrFraction(keyAttr,
|
|
R.styleable.Keyboard_Key_keyWidth,
|
|
mParams.mBaseWidth, mDefaultKeyWidth);
|
|
}
|
|
}
|
|
}
|
|
|
|
public Builder(Context context, KP params) {
|
|
mContext = context;
|
|
final Resources res = context.getResources();
|
|
mResources = res;
|
|
mDisplayMetrics = res.getDisplayMetrics();
|
|
|
|
mParams = params;
|
|
|
|
params.GRID_WIDTH = res.getInteger(R.integer.config_keyboard_grid_width);
|
|
params.GRID_HEIGHT = res.getInteger(R.integer.config_keyboard_grid_height);
|
|
}
|
|
|
|
public void setAutoGenerate(KeyboardLayoutSet.KeysCache keysCache) {
|
|
mParams.mKeysCache = keysCache;
|
|
}
|
|
|
|
public Builder<KP> load(int xmlId, KeyboardId id) {
|
|
mParams.mId = id;
|
|
final XmlResourceParser parser = mResources.getXml(xmlId);
|
|
try {
|
|
parseKeyboard(parser);
|
|
} catch (XmlPullParserException e) {
|
|
Log.w(BUILDER_TAG, "keyboard XML parse error: " + e);
|
|
throw new IllegalArgumentException(e);
|
|
} catch (IOException e) {
|
|
Log.w(BUILDER_TAG, "keyboard XML parse error: " + e);
|
|
throw new RuntimeException(e);
|
|
} finally {
|
|
parser.close();
|
|
}
|
|
return this;
|
|
}
|
|
|
|
// TODO: Remove this method.
|
|
public void setTouchPositionCorrectionEnabled(boolean enabled) {
|
|
mParams.mTouchPositionCorrection.setEnabled(enabled);
|
|
}
|
|
|
|
public void setProximityCharsCorrectionEnabled(boolean enabled) {
|
|
mParams.mProximityCharsCorrectionEnabled = enabled;
|
|
}
|
|
|
|
public Keyboard build() {
|
|
return new Keyboard(mParams);
|
|
}
|
|
|
|
private int mIndent;
|
|
private static final String SPACES = " ";
|
|
|
|
private static String spaces(int count) {
|
|
return (count < SPACES.length()) ? SPACES.substring(0, count) : SPACES;
|
|
}
|
|
|
|
private void startTag(String format, Object ... args) {
|
|
Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
|
|
}
|
|
|
|
private void endTag(String format, Object ... args) {
|
|
Log.d(BUILDER_TAG, String.format(spaces(mIndent-- * 2) + format, args));
|
|
}
|
|
|
|
private void startEndTag(String format, Object ... args) {
|
|
Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
|
|
mIndent--;
|
|
}
|
|
|
|
private void parseKeyboard(XmlPullParser parser)
|
|
throws XmlPullParserException, IOException {
|
|
if (DEBUG) startTag("<%s> %s", TAG_KEYBOARD, mParams.mId);
|
|
int event;
|
|
while ((event = parser.next()) != XmlPullParser.END_DOCUMENT) {
|
|
if (event == XmlPullParser.START_TAG) {
|
|
final String tag = parser.getName();
|
|
if (TAG_KEYBOARD.equals(tag)) {
|
|
parseKeyboardAttributes(parser);
|
|
startKeyboard();
|
|
parseKeyboardContent(parser, false);
|
|
break;
|
|
} else {
|
|
throw new XmlParseUtils.IllegalStartTag(parser, TAG_KEYBOARD);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void parseKeyboardAttributes(XmlPullParser parser) {
|
|
final int displayWidth = mDisplayMetrics.widthPixels;
|
|
final TypedArray keyboardAttr = mContext.obtainStyledAttributes(
|
|
Xml.asAttributeSet(parser), R.styleable.Keyboard, R.attr.keyboardStyle,
|
|
R.style.Keyboard);
|
|
final TypedArray keyAttr = mResources.obtainAttributes(Xml.asAttributeSet(parser),
|
|
R.styleable.Keyboard_Key);
|
|
final TypedArray keyboardViewAttr = mResources.obtainAttributes(
|
|
Xml.asAttributeSet(parser), R.styleable.KeyboardView);
|
|
try {
|
|
final int displayHeight = mDisplayMetrics.heightPixels;
|
|
final String keyboardHeightString = ResourceUtils.getDeviceOverrideValue(
|
|
mResources, R.array.keyboard_heights, null);
|
|
final float keyboardHeight;
|
|
if (keyboardHeightString != null) {
|
|
keyboardHeight = Float.parseFloat(keyboardHeightString)
|
|
* mDisplayMetrics.density;
|
|
} else {
|
|
keyboardHeight = keyboardAttr.getDimension(
|
|
R.styleable.Keyboard_keyboardHeight, displayHeight / 2);
|
|
}
|
|
final float maxKeyboardHeight = ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_maxKeyboardHeight, displayHeight, displayHeight / 2);
|
|
float minKeyboardHeight = ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_minKeyboardHeight, displayHeight, displayHeight / 2);
|
|
if (minKeyboardHeight < 0) {
|
|
// Specified fraction was negative, so it should be calculated against display
|
|
// width.
|
|
minKeyboardHeight = -ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_minKeyboardHeight, displayWidth, displayWidth / 2);
|
|
}
|
|
final Params params = mParams;
|
|
// Keyboard height will not exceed maxKeyboardHeight and will not be less than
|
|
// minKeyboardHeight.
|
|
params.mOccupiedHeight = (int)Math.max(
|
|
Math.min(keyboardHeight, maxKeyboardHeight), minKeyboardHeight);
|
|
params.mOccupiedWidth = params.mId.mWidth;
|
|
params.mTopPadding = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_keyboardTopPadding, params.mOccupiedHeight, 0);
|
|
params.mBottomPadding = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_keyboardBottomPadding, params.mOccupiedHeight, 0);
|
|
params.mHorizontalEdgesPadding = (int)ResourceUtils.getDimensionOrFraction(
|
|
keyboardAttr,
|
|
R.styleable.Keyboard_keyboardHorizontalEdgesPadding,
|
|
mParams.mOccupiedWidth, 0);
|
|
|
|
params.mBaseWidth = params.mOccupiedWidth - params.mHorizontalEdgesPadding * 2
|
|
- params.mHorizontalCenterPadding;
|
|
params.mDefaultKeyWidth = (int)ResourceUtils.getDimensionOrFraction(keyAttr,
|
|
R.styleable.Keyboard_Key_keyWidth, params.mBaseWidth,
|
|
params.mBaseWidth / DEFAULT_KEYBOARD_COLUMNS);
|
|
params.mHorizontalGap = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_horizontalGap, params.mBaseWidth, 0);
|
|
params.mVerticalGap = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_verticalGap, params.mOccupiedHeight, 0);
|
|
params.mBaseHeight = params.mOccupiedHeight - params.mTopPadding
|
|
- params.mBottomPadding + params.mVerticalGap;
|
|
params.mDefaultRowHeight = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
|
R.styleable.Keyboard_rowHeight, params.mBaseHeight,
|
|
params.mBaseHeight / DEFAULT_KEYBOARD_ROWS);
|
|
|
|
if (keyboardViewAttr.hasValue(R.styleable.KeyboardView_keyTypeface)) {
|
|
params.mKeyTypeface = Typeface.defaultFromStyle(keyboardViewAttr.getInt(
|
|
R.styleable.KeyboardView_keyTypeface, Typeface.NORMAL));
|
|
}
|
|
params.mKeyLetterRatio = ResourceUtils.getFraction(keyboardViewAttr,
|
|
R.styleable.KeyboardView_keyLetterSize);
|
|
params.mKeyLetterSize = ResourceUtils.getDimensionPixelSize(keyboardViewAttr,
|
|
R.styleable.KeyboardView_keyLetterSize);
|
|
params.mKeyHintLetterRatio = ResourceUtils.getFraction(keyboardViewAttr,
|
|
R.styleable.KeyboardView_keyHintLetterRatio);
|
|
params.mKeyShiftedLetterHintRatio = ResourceUtils.getFraction(keyboardViewAttr,
|
|
R.styleable.KeyboardView_keyShiftedLetterHintRatio);
|
|
|
|
params.mMoreKeysTemplate = keyboardAttr.getResourceId(
|
|
R.styleable.Keyboard_moreKeysTemplate, 0);
|
|
params.mMaxMoreKeysKeyboardColumn = keyAttr.getInt(
|
|
R.styleable.Keyboard_Key_maxMoreKeysColumn, 5);
|
|
|
|
params.mThemeId = keyboardAttr.getInt(R.styleable.Keyboard_themeId, 0);
|
|
params.mIconsSet.loadIcons(keyboardAttr);
|
|
final String language = params.mId.mLocale.getLanguage();
|
|
params.mCodesSet.setLanguage(language);
|
|
params.mTextsSet.setLanguage(language);
|
|
final RunInLocale<Void> job = new RunInLocale<Void>() {
|
|
@Override
|
|
protected Void job(Resources res) {
|
|
params.mTextsSet.loadStringResources(mContext);
|
|
return null;
|
|
}
|
|
};
|
|
// Null means the current system locale.
|
|
final Locale locale = SubtypeLocale.isNoLanguage(params.mId.mSubtype)
|
|
? null : params.mId.mLocale;
|
|
job.runInLocale(mResources, locale);
|
|
|
|
final int resourceId = keyboardAttr.getResourceId(
|
|
R.styleable.Keyboard_touchPositionCorrectionData, 0);
|
|
params.mTouchPositionCorrection.setEnabled(resourceId != 0);
|
|
if (resourceId != 0) {
|
|
final String[] data = mResources.getStringArray(resourceId);
|
|
params.mTouchPositionCorrection.load(data);
|
|
}
|
|
} finally {
|
|
keyboardViewAttr.recycle();
|
|
keyAttr.recycle();
|
|
keyboardAttr.recycle();
|
|
}
|
|
}
|
|
|
|
private void parseKeyboardContent(XmlPullParser parser, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
int event;
|
|
while ((event = parser.next()) != XmlPullParser.END_DOCUMENT) {
|
|
if (event == XmlPullParser.START_TAG) {
|
|
final String tag = parser.getName();
|
|
if (TAG_ROW.equals(tag)) {
|
|
Row row = parseRowAttributes(parser);
|
|
if (DEBUG) startTag("<%s>%s", TAG_ROW, skip ? " skipped" : "");
|
|
if (!skip) {
|
|
startRow(row);
|
|
}
|
|
parseRowContent(parser, row, skip);
|
|
} else if (TAG_INCLUDE.equals(tag)) {
|
|
parseIncludeKeyboardContent(parser, skip);
|
|
} else if (TAG_SWITCH.equals(tag)) {
|
|
parseSwitchKeyboardContent(parser, skip);
|
|
} else if (TAG_KEY_STYLE.equals(tag)) {
|
|
parseKeyStyle(parser, skip);
|
|
} else {
|
|
throw new XmlParseUtils.IllegalStartTag(parser, TAG_ROW);
|
|
}
|
|
} else if (event == XmlPullParser.END_TAG) {
|
|
final String tag = parser.getName();
|
|
if (DEBUG) endTag("</%s>", tag);
|
|
if (TAG_KEYBOARD.equals(tag)) {
|
|
endKeyboard();
|
|
break;
|
|
} else if (TAG_CASE.equals(tag) || TAG_DEFAULT.equals(tag)
|
|
|| TAG_MERGE.equals(tag)) {
|
|
break;
|
|
} else {
|
|
throw new XmlParseUtils.IllegalEndTag(parser, TAG_ROW);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private Row parseRowAttributes(XmlPullParser parser) throws XmlPullParserException {
|
|
final TypedArray a = mResources.obtainAttributes(Xml.asAttributeSet(parser),
|
|
R.styleable.Keyboard);
|
|
try {
|
|
if (a.hasValue(R.styleable.Keyboard_horizontalGap)) {
|
|
throw new XmlParseUtils.IllegalAttribute(parser, "horizontalGap");
|
|
}
|
|
if (a.hasValue(R.styleable.Keyboard_verticalGap)) {
|
|
throw new XmlParseUtils.IllegalAttribute(parser, "verticalGap");
|
|
}
|
|
return new Row(mResources, mParams, parser, mCurrentY);
|
|
} finally {
|
|
a.recycle();
|
|
}
|
|
}
|
|
|
|
private void parseRowContent(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
int event;
|
|
while ((event = parser.next()) != XmlPullParser.END_DOCUMENT) {
|
|
if (event == XmlPullParser.START_TAG) {
|
|
final String tag = parser.getName();
|
|
if (TAG_KEY.equals(tag)) {
|
|
parseKey(parser, row, skip);
|
|
} else if (TAG_SPACER.equals(tag)) {
|
|
parseSpacer(parser, row, skip);
|
|
} else if (TAG_INCLUDE.equals(tag)) {
|
|
parseIncludeRowContent(parser, row, skip);
|
|
} else if (TAG_SWITCH.equals(tag)) {
|
|
parseSwitchRowContent(parser, row, skip);
|
|
} else if (TAG_KEY_STYLE.equals(tag)) {
|
|
parseKeyStyle(parser, skip);
|
|
} else {
|
|
throw new XmlParseUtils.IllegalStartTag(parser, TAG_KEY);
|
|
}
|
|
} else if (event == XmlPullParser.END_TAG) {
|
|
final String tag = parser.getName();
|
|
if (DEBUG) endTag("</%s>", tag);
|
|
if (TAG_ROW.equals(tag)) {
|
|
if (!skip) {
|
|
endRow(row);
|
|
}
|
|
break;
|
|
} else if (TAG_CASE.equals(tag) || TAG_DEFAULT.equals(tag)
|
|
|| TAG_MERGE.equals(tag)) {
|
|
break;
|
|
} else {
|
|
throw new XmlParseUtils.IllegalEndTag(parser, TAG_KEY);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void parseKey(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
if (skip) {
|
|
XmlParseUtils.checkEndTag(TAG_KEY, parser);
|
|
if (DEBUG) {
|
|
startEndTag("<%s /> skipped", TAG_KEY);
|
|
}
|
|
} else {
|
|
final Key key = new Key(mResources, mParams, row, parser);
|
|
if (DEBUG) {
|
|
startEndTag("<%s%s %s moreKeys=%s />", TAG_KEY,
|
|
(key.isEnabled() ? "" : " disabled"), key,
|
|
Arrays.toString(key.mMoreKeys));
|
|
}
|
|
XmlParseUtils.checkEndTag(TAG_KEY, parser);
|
|
endKey(key);
|
|
}
|
|
}
|
|
|
|
private void parseSpacer(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
if (skip) {
|
|
XmlParseUtils.checkEndTag(TAG_SPACER, parser);
|
|
if (DEBUG) startEndTag("<%s /> skipped", TAG_SPACER);
|
|
} else {
|
|
final Key.Spacer spacer = new Key.Spacer(mResources, mParams, row, parser);
|
|
if (DEBUG) startEndTag("<%s />", TAG_SPACER);
|
|
XmlParseUtils.checkEndTag(TAG_SPACER, parser);
|
|
endKey(spacer);
|
|
}
|
|
}
|
|
|
|
private void parseIncludeKeyboardContent(XmlPullParser parser, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
parseIncludeInternal(parser, null, skip);
|
|
}
|
|
|
|
private void parseIncludeRowContent(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
parseIncludeInternal(parser, row, skip);
|
|
}
|
|
|
|
private void parseIncludeInternal(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
if (skip) {
|
|
XmlParseUtils.checkEndTag(TAG_INCLUDE, parser);
|
|
if (DEBUG) startEndTag("</%s> skipped", TAG_INCLUDE);
|
|
} else {
|
|
final AttributeSet attr = Xml.asAttributeSet(parser);
|
|
final TypedArray keyboardAttr = mResources.obtainAttributes(attr,
|
|
R.styleable.Keyboard_Include);
|
|
final TypedArray keyAttr = mResources.obtainAttributes(attr,
|
|
R.styleable.Keyboard_Key);
|
|
int keyboardLayout = 0;
|
|
float savedDefaultKeyWidth = 0;
|
|
int savedDefaultKeyLabelFlags = 0;
|
|
int savedDefaultBackgroundType = Key.BACKGROUND_TYPE_NORMAL;
|
|
try {
|
|
XmlParseUtils.checkAttributeExists(keyboardAttr,
|
|
R.styleable.Keyboard_Include_keyboardLayout, "keyboardLayout",
|
|
TAG_INCLUDE, parser);
|
|
keyboardLayout = keyboardAttr.getResourceId(
|
|
R.styleable.Keyboard_Include_keyboardLayout, 0);
|
|
if (row != null) {
|
|
if (keyAttr.hasValue(R.styleable.Keyboard_Key_keyXPos)) {
|
|
// Override current x coordinate.
|
|
row.setXPos(row.getKeyX(keyAttr));
|
|
}
|
|
// TODO: Remove this if-clause and do the same as backgroundType below.
|
|
savedDefaultKeyWidth = row.getDefaultKeyWidth();
|
|
if (keyAttr.hasValue(R.styleable.Keyboard_Key_keyWidth)) {
|
|
// Override default key width.
|
|
row.setDefaultKeyWidth(row.getKeyWidth(keyAttr));
|
|
}
|
|
savedDefaultKeyLabelFlags = row.getDefaultKeyLabelFlags();
|
|
// Bitwise-or default keyLabelFlag if exists.
|
|
row.setDefaultKeyLabelFlags(keyAttr.getInt(
|
|
R.styleable.Keyboard_Key_keyLabelFlags, 0)
|
|
| savedDefaultKeyLabelFlags);
|
|
savedDefaultBackgroundType = row.getDefaultBackgroundType();
|
|
// Override default backgroundType if exists.
|
|
row.setDefaultBackgroundType(keyAttr.getInt(
|
|
R.styleable.Keyboard_Key_backgroundType,
|
|
savedDefaultBackgroundType));
|
|
}
|
|
} finally {
|
|
keyboardAttr.recycle();
|
|
keyAttr.recycle();
|
|
}
|
|
|
|
XmlParseUtils.checkEndTag(TAG_INCLUDE, parser);
|
|
if (DEBUG) {
|
|
startEndTag("<%s keyboardLayout=%s />",TAG_INCLUDE,
|
|
mResources.getResourceEntryName(keyboardLayout));
|
|
}
|
|
final XmlResourceParser parserForInclude = mResources.getXml(keyboardLayout);
|
|
try {
|
|
parseMerge(parserForInclude, row, skip);
|
|
} finally {
|
|
if (row != null) {
|
|
// Restore default keyWidth, keyLabelFlags, and backgroundType.
|
|
row.setDefaultKeyWidth(savedDefaultKeyWidth);
|
|
row.setDefaultKeyLabelFlags(savedDefaultKeyLabelFlags);
|
|
row.setDefaultBackgroundType(savedDefaultBackgroundType);
|
|
}
|
|
parserForInclude.close();
|
|
}
|
|
}
|
|
}
|
|
|
|
private void parseMerge(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
if (DEBUG) startTag("<%s>", TAG_MERGE);
|
|
int event;
|
|
while ((event = parser.next()) != XmlPullParser.END_DOCUMENT) {
|
|
if (event == XmlPullParser.START_TAG) {
|
|
final String tag = parser.getName();
|
|
if (TAG_MERGE.equals(tag)) {
|
|
if (row == null) {
|
|
parseKeyboardContent(parser, skip);
|
|
} else {
|
|
parseRowContent(parser, row, skip);
|
|
}
|
|
break;
|
|
} else {
|
|
throw new XmlParseUtils.ParseException(
|
|
"Included keyboard layout must have <merge> root element", parser);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void parseSwitchKeyboardContent(XmlPullParser parser, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
parseSwitchInternal(parser, null, skip);
|
|
}
|
|
|
|
private void parseSwitchRowContent(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
parseSwitchInternal(parser, row, skip);
|
|
}
|
|
|
|
private void parseSwitchInternal(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
if (DEBUG) startTag("<%s> %s", TAG_SWITCH, mParams.mId);
|
|
boolean selected = false;
|
|
int event;
|
|
while ((event = parser.next()) != XmlPullParser.END_DOCUMENT) {
|
|
if (event == XmlPullParser.START_TAG) {
|
|
final String tag = parser.getName();
|
|
if (TAG_CASE.equals(tag)) {
|
|
selected |= parseCase(parser, row, selected ? true : skip);
|
|
} else if (TAG_DEFAULT.equals(tag)) {
|
|
selected |= parseDefault(parser, row, selected ? true : skip);
|
|
} else {
|
|
throw new XmlParseUtils.IllegalStartTag(parser, TAG_KEY);
|
|
}
|
|
} else if (event == XmlPullParser.END_TAG) {
|
|
final String tag = parser.getName();
|
|
if (TAG_SWITCH.equals(tag)) {
|
|
if (DEBUG) endTag("</%s>", TAG_SWITCH);
|
|
break;
|
|
} else {
|
|
throw new XmlParseUtils.IllegalEndTag(parser, TAG_KEY);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private boolean parseCase(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
final boolean selected = parseCaseCondition(parser);
|
|
if (row == null) {
|
|
// Processing Rows.
|
|
parseKeyboardContent(parser, selected ? skip : true);
|
|
} else {
|
|
// Processing Keys.
|
|
parseRowContent(parser, row, selected ? skip : true);
|
|
}
|
|
return selected;
|
|
}
|
|
|
|
private boolean parseCaseCondition(XmlPullParser parser) {
|
|
final KeyboardId id = mParams.mId;
|
|
if (id == null) {
|
|
return true;
|
|
}
|
|
final TypedArray a = mResources.obtainAttributes(Xml.asAttributeSet(parser),
|
|
R.styleable.Keyboard_Case);
|
|
try {
|
|
final boolean keyboardLayoutSetElementMatched = matchTypedValue(a,
|
|
R.styleable.Keyboard_Case_keyboardLayoutSetElement, id.mElementId,
|
|
KeyboardId.elementIdToName(id.mElementId));
|
|
final boolean modeMatched = matchTypedValue(a,
|
|
R.styleable.Keyboard_Case_mode, id.mMode, KeyboardId.modeName(id.mMode));
|
|
final boolean navigateNextMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_navigateNext, id.navigateNext());
|
|
final boolean navigatePreviousMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_navigatePrevious, id.navigatePrevious());
|
|
final boolean passwordInputMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_passwordInput, id.passwordInput());
|
|
final boolean clobberSettingsKeyMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_clobberSettingsKey, id.mClobberSettingsKey);
|
|
final boolean shortcutKeyEnabledMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_shortcutKeyEnabled, id.mShortcutKeyEnabled);
|
|
final boolean hasShortcutKeyMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_hasShortcutKey, id.mHasShortcutKey);
|
|
final boolean languageSwitchKeyEnabledMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_languageSwitchKeyEnabled,
|
|
id.mLanguageSwitchKeyEnabled);
|
|
final boolean isMultiLineMatched = matchBoolean(a,
|
|
R.styleable.Keyboard_Case_isMultiLine, id.isMultiLine());
|
|
final boolean imeActionMatched = matchInteger(a,
|
|
R.styleable.Keyboard_Case_imeAction, id.imeAction());
|
|
final boolean localeCodeMatched = matchString(a,
|
|
R.styleable.Keyboard_Case_localeCode, id.mLocale.toString());
|
|
final boolean languageCodeMatched = matchString(a,
|
|
R.styleable.Keyboard_Case_languageCode, id.mLocale.getLanguage());
|
|
final boolean countryCodeMatched = matchString(a,
|
|
R.styleable.Keyboard_Case_countryCode, id.mLocale.getCountry());
|
|
final boolean selected = keyboardLayoutSetElementMatched && modeMatched
|
|
&& navigateNextMatched && navigatePreviousMatched && passwordInputMatched
|
|
&& clobberSettingsKeyMatched && shortcutKeyEnabledMatched
|
|
&& hasShortcutKeyMatched && languageSwitchKeyEnabledMatched
|
|
&& isMultiLineMatched && imeActionMatched && localeCodeMatched
|
|
&& languageCodeMatched && countryCodeMatched;
|
|
|
|
if (DEBUG) {
|
|
startTag("<%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s>%s", TAG_CASE,
|
|
textAttr(a.getString(
|
|
R.styleable.Keyboard_Case_keyboardLayoutSetElement),
|
|
"keyboardLayoutSetElement"),
|
|
textAttr(a.getString(R.styleable.Keyboard_Case_mode), "mode"),
|
|
textAttr(a.getString(R.styleable.Keyboard_Case_imeAction),
|
|
"imeAction"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_navigateNext,
|
|
"navigateNext"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_navigatePrevious,
|
|
"navigatePrevious"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_clobberSettingsKey,
|
|
"clobberSettingsKey"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_passwordInput,
|
|
"passwordInput"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_shortcutKeyEnabled,
|
|
"shortcutKeyEnabled"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_hasShortcutKey,
|
|
"hasShortcutKey"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_languageSwitchKeyEnabled,
|
|
"languageSwitchKeyEnabled"),
|
|
booleanAttr(a, R.styleable.Keyboard_Case_isMultiLine,
|
|
"isMultiLine"),
|
|
textAttr(a.getString(R.styleable.Keyboard_Case_localeCode),
|
|
"localeCode"),
|
|
textAttr(a.getString(R.styleable.Keyboard_Case_languageCode),
|
|
"languageCode"),
|
|
textAttr(a.getString(R.styleable.Keyboard_Case_countryCode),
|
|
"countryCode"),
|
|
selected ? "" : " skipped");
|
|
}
|
|
|
|
return selected;
|
|
} finally {
|
|
a.recycle();
|
|
}
|
|
}
|
|
|
|
private static boolean matchInteger(TypedArray a, int index, int value) {
|
|
// If <case> does not have "index" attribute, that means this <case> is wild-card for
|
|
// the attribute.
|
|
return !a.hasValue(index) || a.getInt(index, 0) == value;
|
|
}
|
|
|
|
private static boolean matchBoolean(TypedArray a, int index, boolean value) {
|
|
// If <case> does not have "index" attribute, that means this <case> is wild-card for
|
|
// the attribute.
|
|
return !a.hasValue(index) || a.getBoolean(index, false) == value;
|
|
}
|
|
|
|
private static boolean matchString(TypedArray a, int index, String value) {
|
|
// If <case> does not have "index" attribute, that means this <case> is wild-card for
|
|
// the attribute.
|
|
return !a.hasValue(index)
|
|
|| StringUtils.containsInArray(value, a.getString(index).split("\\|"));
|
|
}
|
|
|
|
private static boolean matchTypedValue(TypedArray a, int index, int intValue,
|
|
String strValue) {
|
|
// If <case> does not have "index" attribute, that means this <case> is wild-card for
|
|
// the attribute.
|
|
final TypedValue v = a.peekValue(index);
|
|
if (v == null) {
|
|
return true;
|
|
}
|
|
if (ResourceUtils.isIntegerValue(v)) {
|
|
return intValue == a.getInt(index, 0);
|
|
} else if (ResourceUtils.isStringValue(v)) {
|
|
return StringUtils.containsInArray(strValue, a.getString(index).split("\\|"));
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private boolean parseDefault(XmlPullParser parser, Row row, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
if (DEBUG) startTag("<%s>", TAG_DEFAULT);
|
|
if (row == null) {
|
|
parseKeyboardContent(parser, skip);
|
|
} else {
|
|
parseRowContent(parser, row, skip);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private void parseKeyStyle(XmlPullParser parser, boolean skip)
|
|
throws XmlPullParserException, IOException {
|
|
TypedArray keyStyleAttr = mResources.obtainAttributes(Xml.asAttributeSet(parser),
|
|
R.styleable.Keyboard_KeyStyle);
|
|
TypedArray keyAttrs = mResources.obtainAttributes(Xml.asAttributeSet(parser),
|
|
R.styleable.Keyboard_Key);
|
|
try {
|
|
if (!keyStyleAttr.hasValue(R.styleable.Keyboard_KeyStyle_styleName)) {
|
|
throw new XmlParseUtils.ParseException("<" + TAG_KEY_STYLE
|
|
+ "/> needs styleName attribute", parser);
|
|
}
|
|
if (DEBUG) {
|
|
startEndTag("<%s styleName=%s />%s", TAG_KEY_STYLE,
|
|
keyStyleAttr.getString(R.styleable.Keyboard_KeyStyle_styleName),
|
|
skip ? " skipped" : "");
|
|
}
|
|
if (!skip) {
|
|
mParams.mKeyStyles.parseKeyStyleAttributes(keyStyleAttr, keyAttrs, parser);
|
|
}
|
|
} finally {
|
|
keyStyleAttr.recycle();
|
|
keyAttrs.recycle();
|
|
}
|
|
XmlParseUtils.checkEndTag(TAG_KEY_STYLE, parser);
|
|
}
|
|
|
|
private void startKeyboard() {
|
|
mCurrentY += mParams.mTopPadding;
|
|
mTopEdge = true;
|
|
}
|
|
|
|
private void startRow(Row row) {
|
|
addEdgeSpace(mParams.mHorizontalEdgesPadding, row);
|
|
mCurrentRow = row;
|
|
mLeftEdge = true;
|
|
mRightEdgeKey = null;
|
|
}
|
|
|
|
private void endRow(Row row) {
|
|
if (mCurrentRow == null) {
|
|
throw new InflateException("orphan end row tag");
|
|
}
|
|
if (mRightEdgeKey != null) {
|
|
mRightEdgeKey.markAsRightEdge(mParams);
|
|
mRightEdgeKey = null;
|
|
}
|
|
addEdgeSpace(mParams.mHorizontalEdgesPadding, row);
|
|
mCurrentY += row.mRowHeight;
|
|
mCurrentRow = null;
|
|
mTopEdge = false;
|
|
}
|
|
|
|
private void endKey(Key key) {
|
|
mParams.onAddKey(key);
|
|
if (mLeftEdge) {
|
|
key.markAsLeftEdge(mParams);
|
|
mLeftEdge = false;
|
|
}
|
|
if (mTopEdge) {
|
|
key.markAsTopEdge(mParams);
|
|
}
|
|
mRightEdgeKey = key;
|
|
}
|
|
|
|
private void endKeyboard() {
|
|
// nothing to do here.
|
|
}
|
|
|
|
private void addEdgeSpace(float width, Row row) {
|
|
row.advanceXPos(width);
|
|
mLeftEdge = false;
|
|
mRightEdgeKey = null;
|
|
}
|
|
|
|
private static String textAttr(String value, String name) {
|
|
return value != null ? String.format(" %s=%s", name, value) : "";
|
|
}
|
|
|
|
private static String booleanAttr(TypedArray a, int index, String name) {
|
|
return a.hasValue(index)
|
|
? String.format(" %s=%s", name, a.getBoolean(index, false)) : "";
|
|
}
|
|
}
|
|
}
|