2012-08-30 05:22:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
2013-01-21 12:52:57 +00:00
|
|
|
* 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
|
2012-08-30 05:22:40 +00:00
|
|
|
*
|
2013-01-21 12:52:57 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-08-30 05:22:40 +00:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
2013-01-21 12:52:57 +00:00
|
|
|
* 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.
|
2012-08-30 05:22:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.keyboard.internal;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.content.res.TypedArray;
|
|
|
|
import android.content.res.XmlResourceParser;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.util.TypedValue;
|
|
|
|
import android.util.Xml;
|
|
|
|
|
2012-10-03 08:36:45 +00:00
|
|
|
import com.android.inputmethod.annotations.UsedForTesting;
|
2012-08-30 05:22:40 +00:00
|
|
|
import com.android.inputmethod.keyboard.Key;
|
|
|
|
import com.android.inputmethod.keyboard.Keyboard;
|
|
|
|
import com.android.inputmethod.keyboard.KeyboardId;
|
2013-08-26 04:09:19 +00:00
|
|
|
import com.android.inputmethod.latin.Constants;
|
2012-08-30 05:22:40 +00:00
|
|
|
import com.android.inputmethod.latin.R;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.ResourceUtils;
|
2013-07-24 06:58:11 +00:00
|
|
|
import com.android.inputmethod.latin.utils.RunInLocale;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.StringUtils;
|
2013-07-24 01:37:07 +00:00
|
|
|
import com.android.inputmethod.latin.utils.SubtypeLocaleUtils;
|
2013-06-23 16:11:32 +00:00
|
|
|
import com.android.inputmethod.latin.utils.XmlParseUtils;
|
2012-08-30 05:22:40 +00:00
|
|
|
|
|
|
|
import org.xmlpull.v1.XmlPullParser;
|
|
|
|
import org.xmlpull.v1.XmlPullParserException;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Locale;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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>
|
|
|
|
*/
|
|
|
|
|
2013-08-26 04:09:19 +00:00
|
|
|
// TODO: Write unit tests for this class.
|
2012-08-30 05:22:40 +00:00
|
|
|
public class KeyboardBuilder<KP extends KeyboardParams> {
|
|
|
|
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";
|
2013-08-26 04:09:19 +00:00
|
|
|
private static final String TAG_GRID_ROWS = "GridRows";
|
2012-08-30 05:22:40 +00:00
|
|
|
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 int mCurrentY = 0;
|
|
|
|
private KeyboardRow mCurrentRow = null;
|
|
|
|
private boolean mLeftEdge;
|
|
|
|
private boolean mTopEdge;
|
|
|
|
private Key mRightEdgeKey = null;
|
|
|
|
|
|
|
|
public KeyboardBuilder(final Context context, final KP params) {
|
|
|
|
mContext = context;
|
|
|
|
final Resources res = context.getResources();
|
|
|
|
mResources = res;
|
|
|
|
|
|
|
|
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(final KeysCache keysCache) {
|
|
|
|
mParams.mKeysCache = keysCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
public KeyboardBuilder<KP> load(final int xmlId, final KeyboardId id) {
|
|
|
|
mParams.mId = id;
|
|
|
|
final XmlResourceParser parser = mResources.getXml(xmlId);
|
|
|
|
try {
|
|
|
|
parseKeyboard(parser);
|
|
|
|
} catch (XmlPullParserException e) {
|
2013-02-12 05:14:56 +00:00
|
|
|
Log.w(BUILDER_TAG, "keyboard XML parse error", e);
|
2013-03-26 03:13:56 +00:00
|
|
|
throw new IllegalArgumentException(e.getMessage(), e);
|
2012-08-30 05:22:40 +00:00
|
|
|
} catch (IOException e) {
|
2013-02-12 05:14:56 +00:00
|
|
|
Log.w(BUILDER_TAG, "keyboard XML parse error", e);
|
2013-03-26 03:13:56 +00:00
|
|
|
throw new RuntimeException(e.getMessage(), e);
|
2012-08-30 05:22:40 +00:00
|
|
|
} finally {
|
|
|
|
parser.close();
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-10-03 08:36:45 +00:00
|
|
|
@UsedForTesting
|
2012-09-25 02:58:36 +00:00
|
|
|
public void disableTouchPositionCorrectionDataForTest() {
|
|
|
|
mParams.mTouchPositionCorrection.setEnabled(false);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setProximityCharsCorrectionEnabled(final boolean enabled) {
|
|
|
|
mParams.mProximityCharsCorrectionEnabled = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Keyboard build() {
|
|
|
|
return new Keyboard(mParams);
|
|
|
|
}
|
|
|
|
|
|
|
|
private int mIndent;
|
|
|
|
private static final String SPACES = " ";
|
|
|
|
|
|
|
|
private static String spaces(final int count) {
|
|
|
|
return (count < SPACES.length()) ? SPACES.substring(0, count) : SPACES;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void startTag(final String format, final Object ... args) {
|
|
|
|
Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void endTag(final String format, final Object ... args) {
|
|
|
|
Log.d(BUILDER_TAG, String.format(spaces(mIndent-- * 2) + format, args));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void startEndTag(final String format, final Object ... args) {
|
|
|
|
Log.d(BUILDER_TAG, String.format(spaces(++mIndent * 2) + format, args));
|
|
|
|
mIndent--;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseKeyboard(final XmlPullParser parser)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
if (DEBUG) startTag("<%s> %s", TAG_KEYBOARD, mParams.mId);
|
2013-03-26 03:13:56 +00:00
|
|
|
while (parser.getEventType() != XmlPullParser.END_DOCUMENT) {
|
|
|
|
final int event = parser.next();
|
2012-08-30 05:22:40 +00:00
|
|
|
if (event == XmlPullParser.START_TAG) {
|
|
|
|
final String tag = parser.getName();
|
|
|
|
if (TAG_KEYBOARD.equals(tag)) {
|
|
|
|
parseKeyboardAttributes(parser);
|
|
|
|
startKeyboard();
|
|
|
|
parseKeyboardContent(parser, false);
|
2013-08-15 10:44:47 +00:00
|
|
|
return;
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_KEYBOARD);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseKeyboardAttributes(final XmlPullParser parser) {
|
2013-08-15 10:44:47 +00:00
|
|
|
final AttributeSet attr = Xml.asAttributeSet(parser);
|
2012-08-30 05:22:40 +00:00
|
|
|
final TypedArray keyboardAttr = mContext.obtainStyledAttributes(
|
2013-08-15 10:44:47 +00:00
|
|
|
attr, R.styleable.Keyboard, R.attr.keyboardStyle, R.style.Keyboard);
|
|
|
|
final TypedArray keyAttr = mResources.obtainAttributes(attr, R.styleable.Keyboard_Key);
|
2012-08-30 05:22:40 +00:00
|
|
|
try {
|
|
|
|
final KeyboardParams params = mParams;
|
2013-01-29 09:30:42 +00:00
|
|
|
final int height = params.mId.mHeight;
|
|
|
|
final int width = params.mId.mWidth;
|
|
|
|
params.mOccupiedHeight = height;
|
|
|
|
params.mOccupiedWidth = width;
|
|
|
|
params.mTopPadding = (int)keyboardAttr.getFraction(
|
|
|
|
R.styleable.Keyboard_keyboardTopPadding, height, height, 0);
|
|
|
|
params.mBottomPadding = (int)keyboardAttr.getFraction(
|
|
|
|
R.styleable.Keyboard_keyboardBottomPadding, height, height, 0);
|
2013-01-30 04:08:44 +00:00
|
|
|
params.mLeftPadding = (int)keyboardAttr.getFraction(
|
|
|
|
R.styleable.Keyboard_keyboardLeftPadding, width, width, 0);
|
|
|
|
params.mRightPadding = (int)keyboardAttr.getFraction(
|
|
|
|
R.styleable.Keyboard_keyboardRightPadding, width, width, 0);
|
2012-08-30 05:22:40 +00:00
|
|
|
|
2013-01-30 04:08:44 +00:00
|
|
|
final int baseWidth =
|
|
|
|
params.mOccupiedWidth - params.mLeftPadding - params.mRightPadding;
|
2013-01-29 09:30:42 +00:00
|
|
|
params.mBaseWidth = baseWidth;
|
|
|
|
params.mDefaultKeyWidth = (int)keyAttr.getFraction(R.styleable.Keyboard_Key_keyWidth,
|
|
|
|
baseWidth, baseWidth, baseWidth / DEFAULT_KEYBOARD_COLUMNS);
|
|
|
|
params.mHorizontalGap = (int)keyboardAttr.getFraction(
|
|
|
|
R.styleable.Keyboard_horizontalGap, baseWidth, baseWidth, 0);
|
|
|
|
// TODO: Fix keyboard geometry calculation clearer. Historically vertical gap between
|
|
|
|
// rows are determined based on the entire keyboard height including top and bottom
|
|
|
|
// paddings.
|
|
|
|
params.mVerticalGap = (int)keyboardAttr.getFraction(
|
|
|
|
R.styleable.Keyboard_verticalGap, height, height, 0);
|
|
|
|
final int baseHeight = params.mOccupiedHeight - params.mTopPadding
|
2012-08-30 05:22:40 +00:00
|
|
|
- params.mBottomPadding + params.mVerticalGap;
|
2013-01-29 09:30:42 +00:00
|
|
|
params.mBaseHeight = baseHeight;
|
2012-08-30 05:22:40 +00:00
|
|
|
params.mDefaultRowHeight = (int)ResourceUtils.getDimensionOrFraction(keyboardAttr,
|
2013-01-29 09:30:42 +00:00
|
|
|
R.styleable.Keyboard_rowHeight, baseHeight, baseHeight / DEFAULT_KEYBOARD_ROWS);
|
2012-08-30 05:22:40 +00:00
|
|
|
|
2012-08-30 08:42:49 +00:00
|
|
|
params.mKeyVisualAttributes = KeyVisualAttributes.newInstance(keyAttr);
|
2012-08-30 05:22:40 +00:00
|
|
|
|
|
|
|
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
|
2013-07-24 06:58:11 +00:00
|
|
|
protected Void job(final Resources res) {
|
2012-08-30 05:22:40 +00:00
|
|
|
params.mTextsSet.loadStringResources(mContext);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// Null means the current system locale.
|
2013-07-24 01:37:07 +00:00
|
|
|
final Locale locale = SubtypeLocaleUtils.isNoLanguage(params.mId.mSubtype)
|
2012-08-30 05:22:40 +00:00
|
|
|
? null : params.mId.mLocale;
|
|
|
|
job.runInLocale(mResources, locale);
|
|
|
|
|
|
|
|
final int resourceId = keyboardAttr.getResourceId(
|
|
|
|
R.styleable.Keyboard_touchPositionCorrectionData, 0);
|
|
|
|
if (resourceId != 0) {
|
|
|
|
final String[] data = mResources.getStringArray(resourceId);
|
|
|
|
params.mTouchPositionCorrection.load(data);
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
keyAttr.recycle();
|
|
|
|
keyboardAttr.recycle();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseKeyboardContent(final XmlPullParser parser, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
2013-03-26 03:13:56 +00:00
|
|
|
while (parser.getEventType() != XmlPullParser.END_DOCUMENT) {
|
|
|
|
final int event = parser.next();
|
2012-08-30 05:22:40 +00:00
|
|
|
if (event == XmlPullParser.START_TAG) {
|
|
|
|
final String tag = parser.getName();
|
|
|
|
if (TAG_ROW.equals(tag)) {
|
|
|
|
final KeyboardRow row = parseRowAttributes(parser);
|
|
|
|
if (DEBUG) startTag("<%s>%s", TAG_ROW, skip ? " skipped" : "");
|
|
|
|
if (!skip) {
|
|
|
|
startRow(row);
|
|
|
|
}
|
|
|
|
parseRowContent(parser, row, skip);
|
2013-08-26 04:09:19 +00:00
|
|
|
} else if (TAG_GRID_ROWS.equals(tag)) {
|
|
|
|
if (DEBUG) startTag("<%s>%s", TAG_GRID_ROWS, skip ? " skipped" : "");
|
|
|
|
parseGridRows(parser, skip);
|
2012-08-30 05:22:40 +00:00
|
|
|
} 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 {
|
2013-03-26 03:03:07 +00:00
|
|
|
throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_ROW);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
} else if (event == XmlPullParser.END_TAG) {
|
|
|
|
final String tag = parser.getName();
|
|
|
|
if (DEBUG) endTag("</%s>", tag);
|
|
|
|
if (TAG_KEYBOARD.equals(tag)) {
|
|
|
|
endKeyboard();
|
2013-08-15 10:44:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (TAG_CASE.equals(tag) || TAG_DEFAULT.equals(tag) || TAG_MERGE.equals(tag)) {
|
|
|
|
return;
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
throw new XmlParseUtils.IllegalEndTag(parser, tag, TAG_ROW);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private KeyboardRow parseRowAttributes(final XmlPullParser parser)
|
|
|
|
throws XmlPullParserException {
|
2013-08-15 10:44:47 +00:00
|
|
|
final AttributeSet attr = Xml.asAttributeSet(parser);
|
|
|
|
final TypedArray keyboardAttr = mResources.obtainAttributes(attr, R.styleable.Keyboard);
|
2012-08-30 05:22:40 +00:00
|
|
|
try {
|
2013-08-15 10:44:47 +00:00
|
|
|
if (keyboardAttr.hasValue(R.styleable.Keyboard_horizontalGap)) {
|
2013-03-26 03:03:07 +00:00
|
|
|
throw new XmlParseUtils.IllegalAttribute(parser, TAG_ROW, "horizontalGap");
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
if (keyboardAttr.hasValue(R.styleable.Keyboard_verticalGap)) {
|
2013-03-26 03:03:07 +00:00
|
|
|
throw new XmlParseUtils.IllegalAttribute(parser, TAG_ROW, "verticalGap");
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
return new KeyboardRow(mResources, mParams, parser, mCurrentY);
|
|
|
|
} finally {
|
2013-08-15 10:44:47 +00:00
|
|
|
keyboardAttr.recycle();
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseRowContent(final XmlPullParser parser, final KeyboardRow row,
|
|
|
|
final boolean skip) throws XmlPullParserException, IOException {
|
2013-03-26 03:13:56 +00:00
|
|
|
while (parser.getEventType() != XmlPullParser.END_DOCUMENT) {
|
|
|
|
final int event = parser.next();
|
2012-08-30 05:22:40 +00:00
|
|
|
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 {
|
2013-03-26 03:03:07 +00:00
|
|
|
throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_ROW);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
} 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);
|
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
return;
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
if (TAG_CASE.equals(tag) || TAG_DEFAULT.equals(tag) || TAG_MERGE.equals(tag)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw new XmlParseUtils.IllegalEndTag(parser, tag, TAG_ROW);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-26 04:09:19 +00:00
|
|
|
private void parseGridRows(final XmlPullParser parser, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
if (skip) {
|
|
|
|
XmlParseUtils.checkEndTag(TAG_GRID_ROWS, parser);
|
|
|
|
if (DEBUG) {
|
|
|
|
startEndTag("<%s /> skipped", TAG_GRID_ROWS);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final KeyboardRow gridRows = new KeyboardRow(mResources, mParams, parser, mCurrentY);
|
|
|
|
final TypedArray gridRowAttr = mResources.obtainAttributes(
|
|
|
|
Xml.asAttributeSet(parser), R.styleable.Keyboard_GridRows);
|
|
|
|
final int codesArrayId = gridRowAttr.getResourceId(
|
|
|
|
R.styleable.Keyboard_GridRows_codesArray, 0);
|
|
|
|
final int textsArrayId = gridRowAttr.getResourceId(
|
|
|
|
R.styleable.Keyboard_GridRows_textsArray, 0);
|
|
|
|
gridRowAttr.recycle();
|
|
|
|
if (codesArrayId == 0 && textsArrayId == 0) {
|
|
|
|
throw new XmlParseUtils.ParseException(
|
|
|
|
"Missing codesArray or textsArray attributes", parser);
|
|
|
|
}
|
|
|
|
if (codesArrayId != 0 && textsArrayId != 0) {
|
|
|
|
throw new XmlParseUtils.ParseException(
|
|
|
|
"Both codesArray and textsArray attributes specifed", parser);
|
|
|
|
}
|
|
|
|
final String[] array = mResources.getStringArray(
|
|
|
|
codesArrayId != 0 ? codesArrayId : textsArrayId);
|
|
|
|
final int counts = array.length;
|
|
|
|
final float keyWidth = gridRows.getKeyWidth(null, 0.0f);
|
|
|
|
final int numColumns = (int)(mParams.mOccupiedWidth / keyWidth);
|
|
|
|
for (int index = 0; index < counts; index += numColumns) {
|
|
|
|
final KeyboardRow row = new KeyboardRow(mResources, mParams, parser, mCurrentY);
|
|
|
|
startRow(row);
|
|
|
|
for (int c = 0; c < numColumns; c++) {
|
|
|
|
final int i = index + c;
|
|
|
|
if (i >= counts) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
final String label;
|
|
|
|
final int code;
|
|
|
|
final String outputText;
|
|
|
|
if (codesArrayId != 0) {
|
|
|
|
final String codeArraySpec = array[i];
|
|
|
|
label = CodesArrayParser.parseLabel(codeArraySpec);
|
|
|
|
code = CodesArrayParser.parseCode(codeArraySpec);
|
|
|
|
outputText = CodesArrayParser.parseOutputText(codeArraySpec);
|
|
|
|
} else {
|
|
|
|
final String textArraySpec = array[i];
|
|
|
|
// TODO: Utilize KeySpecParser or write more generic TextsArrayParser.
|
|
|
|
label = textArraySpec;
|
|
|
|
code = Constants.CODE_OUTPUT_TEXT;
|
|
|
|
outputText = textArraySpec + (char)Constants.CODE_SPACE;
|
|
|
|
}
|
|
|
|
final int x = (int)row.getKeyX(null);
|
|
|
|
final int y = row.getKeyY();
|
|
|
|
final Key key = new Key(mParams, label, null /* hintLabel */, 0 /* iconId */,
|
|
|
|
code, outputText, x, y, (int)keyWidth, (int)row.getRowHeight(),
|
|
|
|
row.getDefaultKeyLabelFlags(), row.getDefaultBackgroundType());
|
|
|
|
endKey(key);
|
|
|
|
row.advanceXPos(keyWidth);
|
|
|
|
}
|
|
|
|
endRow(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlParseUtils.checkEndTag(TAG_GRID_ROWS, parser);
|
|
|
|
}
|
|
|
|
|
2012-08-30 05:22:40 +00:00
|
|
|
private void parseKey(final XmlPullParser parser, final KeyboardRow row, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
if (skip) {
|
|
|
|
XmlParseUtils.checkEndTag(TAG_KEY, parser);
|
2013-08-15 10:44:47 +00:00
|
|
|
if (DEBUG) startEndTag("<%s /> skipped", TAG_KEY);
|
|
|
|
return;
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
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.getMoreKeys()));
|
|
|
|
}
|
|
|
|
XmlParseUtils.checkEndTag(TAG_KEY, parser);
|
|
|
|
endKey(key);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void parseSpacer(final XmlPullParser parser, final KeyboardRow row, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
if (skip) {
|
|
|
|
XmlParseUtils.checkEndTag(TAG_SPACER, parser);
|
|
|
|
if (DEBUG) startEndTag("<%s /> skipped", TAG_SPACER);
|
2013-08-15 10:44:47 +00:00
|
|
|
return;
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
final Key.Spacer spacer = new Key.Spacer(mResources, mParams, row, parser);
|
|
|
|
if (DEBUG) startEndTag("<%s />", TAG_SPACER);
|
|
|
|
XmlParseUtils.checkEndTag(TAG_SPACER, parser);
|
|
|
|
endKey(spacer);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void parseIncludeKeyboardContent(final XmlPullParser parser, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
parseIncludeInternal(parser, null, skip);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseIncludeRowContent(final XmlPullParser parser, final KeyboardRow row,
|
|
|
|
final boolean skip) throws XmlPullParserException, IOException {
|
|
|
|
parseIncludeInternal(parser, row, skip);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseIncludeInternal(final XmlPullParser parser, final KeyboardRow row,
|
|
|
|
final boolean skip) throws XmlPullParserException, IOException {
|
|
|
|
if (skip) {
|
|
|
|
XmlParseUtils.checkEndTag(TAG_INCLUDE, parser);
|
|
|
|
if (DEBUG) startEndTag("</%s> skipped", TAG_INCLUDE);
|
2013-08-15 10:44:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
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) {
|
2013-08-19 07:07:58 +00:00
|
|
|
// Override current x coordinate.
|
|
|
|
row.setXPos(row.getKeyX(keyAttr));
|
|
|
|
// Push current Row attributes and update with new attributes.
|
|
|
|
row.pushRowAttributes(keyAttr);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
} finally {
|
|
|
|
keyboardAttr.recycle();
|
|
|
|
keyAttr.recycle();
|
|
|
|
}
|
2012-08-30 05:22:40 +00:00
|
|
|
|
2013-08-15 10:44:47 +00:00
|
|
|
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) {
|
2013-08-19 07:07:58 +00:00
|
|
|
// Restore Row attributes.
|
|
|
|
row.popRowAttributes();
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
parserForInclude.close();
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseMerge(final XmlPullParser parser, final KeyboardRow row, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
if (DEBUG) startTag("<%s>", TAG_MERGE);
|
2013-03-26 03:13:56 +00:00
|
|
|
while (parser.getEventType() != XmlPullParser.END_DOCUMENT) {
|
|
|
|
final int event = parser.next();
|
2012-08-30 05:22:40 +00:00
|
|
|
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);
|
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
return;
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
throw new XmlParseUtils.ParseException(
|
|
|
|
"Included keyboard layout must have <merge> root element", parser);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseSwitchKeyboardContent(final XmlPullParser parser, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
|
|
|
parseSwitchInternal(parser, null, skip);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseSwitchRowContent(final XmlPullParser parser, final KeyboardRow row,
|
|
|
|
final boolean skip) throws XmlPullParserException, IOException {
|
|
|
|
parseSwitchInternal(parser, row, skip);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void parseSwitchInternal(final XmlPullParser parser, final KeyboardRow row,
|
|
|
|
final boolean skip) throws XmlPullParserException, IOException {
|
|
|
|
if (DEBUG) startTag("<%s> %s", TAG_SWITCH, mParams.mId);
|
|
|
|
boolean selected = false;
|
2013-03-26 03:13:56 +00:00
|
|
|
while (parser.getEventType() != XmlPullParser.END_DOCUMENT) {
|
|
|
|
final int event = parser.next();
|
2012-08-30 05:22:40 +00:00
|
|
|
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 {
|
2013-03-26 03:03:07 +00:00
|
|
|
throw new XmlParseUtils.IllegalStartTag(parser, tag, TAG_SWITCH);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
} else if (event == XmlPullParser.END_TAG) {
|
|
|
|
final String tag = parser.getName();
|
|
|
|
if (TAG_SWITCH.equals(tag)) {
|
|
|
|
if (DEBUG) endTag("</%s>", TAG_SWITCH);
|
2013-08-15 10:44:47 +00:00
|
|
|
return;
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
throw new XmlParseUtils.IllegalEndTag(parser, tag, TAG_SWITCH);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean parseCase(final XmlPullParser parser, final KeyboardRow row, final 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(final XmlPullParser parser) {
|
|
|
|
final KeyboardId id = mParams.mId;
|
|
|
|
if (id == null) {
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-15 10:44:47 +00:00
|
|
|
final AttributeSet attr = Xml.asAttributeSet(parser);
|
|
|
|
final TypedArray caseAttr = mResources.obtainAttributes(attr, R.styleable.Keyboard_Case);
|
2012-08-30 05:22:40 +00:00
|
|
|
try {
|
2013-08-29 00:50:45 +00:00
|
|
|
final boolean keyboardLayoutSetMatched = matchString(caseAttr,
|
|
|
|
R.styleable.Keyboard_Case_keyboardLayoutSet,
|
|
|
|
SubtypeLocaleUtils.getKeyboardLayoutSetName(id.mSubtype));
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean keyboardLayoutSetElementMatched = matchTypedValue(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_keyboardLayoutSetElement, id.mElementId,
|
|
|
|
KeyboardId.elementIdToName(id.mElementId));
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean modeMatched = matchTypedValue(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_mode, id.mMode, KeyboardId.modeName(id.mMode));
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean navigateNextMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_navigateNext, id.navigateNext());
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean navigatePreviousMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_navigatePrevious, id.navigatePrevious());
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean passwordInputMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_passwordInput, id.passwordInput());
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean clobberSettingsKeyMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_clobberSettingsKey, id.mClobberSettingsKey);
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean shortcutKeyEnabledMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_shortcutKeyEnabled, id.mShortcutKeyEnabled);
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean shortcutKeyOnSymbolsMatched = matchBoolean(caseAttr,
|
2012-12-11 03:46:23 +00:00
|
|
|
R.styleable.Keyboard_Case_shortcutKeyOnSymbols, id.mShortcutKeyOnSymbols);
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean hasShortcutKeyMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_hasShortcutKey, id.mHasShortcutKey);
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean languageSwitchKeyEnabledMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_languageSwitchKeyEnabled,
|
|
|
|
id.mLanguageSwitchKeyEnabled);
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean isMultiLineMatched = matchBoolean(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_isMultiLine, id.isMultiLine());
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean imeActionMatched = matchInteger(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_imeAction, id.imeAction());
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean localeCodeMatched = matchString(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_localeCode, id.mLocale.toString());
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean languageCodeMatched = matchString(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_languageCode, id.mLocale.getLanguage());
|
2013-08-15 10:44:47 +00:00
|
|
|
final boolean countryCodeMatched = matchString(caseAttr,
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_countryCode, id.mLocale.getCountry());
|
2013-08-29 00:50:45 +00:00
|
|
|
final boolean selected = keyboardLayoutSetMatched && keyboardLayoutSetElementMatched
|
|
|
|
&& modeMatched && navigateNextMatched && navigatePreviousMatched
|
|
|
|
&& passwordInputMatched && clobberSettingsKeyMatched
|
|
|
|
&& shortcutKeyEnabledMatched && shortcutKeyOnSymbolsMatched
|
|
|
|
&& hasShortcutKeyMatched && languageSwitchKeyEnabledMatched
|
|
|
|
&& isMultiLineMatched && imeActionMatched && localeCodeMatched
|
|
|
|
&& languageCodeMatched && countryCodeMatched;
|
2012-08-30 05:22:40 +00:00
|
|
|
|
|
|
|
if (DEBUG) {
|
2013-08-29 00:50:45 +00:00
|
|
|
startTag("<%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s>%s", TAG_CASE,
|
|
|
|
textAttr(caseAttr.getString(
|
|
|
|
R.styleable.Keyboard_Case_keyboardLayoutSet), "keyboardLayoutSet"),
|
2013-08-15 10:44:47 +00:00
|
|
|
textAttr(caseAttr.getString(
|
2012-08-30 05:22:40 +00:00
|
|
|
R.styleable.Keyboard_Case_keyboardLayoutSetElement),
|
|
|
|
"keyboardLayoutSetElement"),
|
2013-08-15 10:44:47 +00:00
|
|
|
textAttr(caseAttr.getString(R.styleable.Keyboard_Case_mode), "mode"),
|
|
|
|
textAttr(caseAttr.getString(R.styleable.Keyboard_Case_imeAction),
|
2012-08-30 05:22:40 +00:00
|
|
|
"imeAction"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_navigateNext,
|
2012-08-30 05:22:40 +00:00
|
|
|
"navigateNext"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_navigatePrevious,
|
2012-08-30 05:22:40 +00:00
|
|
|
"navigatePrevious"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_clobberSettingsKey,
|
2012-08-30 05:22:40 +00:00
|
|
|
"clobberSettingsKey"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_passwordInput,
|
2012-08-30 05:22:40 +00:00
|
|
|
"passwordInput"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_shortcutKeyEnabled,
|
2012-08-30 05:22:40 +00:00
|
|
|
"shortcutKeyEnabled"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_shortcutKeyOnSymbols,
|
2012-12-11 03:46:23 +00:00
|
|
|
"shortcutKeyOnSymbols"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_hasShortcutKey,
|
2012-08-30 05:22:40 +00:00
|
|
|
"hasShortcutKey"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_languageSwitchKeyEnabled,
|
2012-08-30 05:22:40 +00:00
|
|
|
"languageSwitchKeyEnabled"),
|
2013-08-15 10:44:47 +00:00
|
|
|
booleanAttr(caseAttr, R.styleable.Keyboard_Case_isMultiLine,
|
2012-08-30 05:22:40 +00:00
|
|
|
"isMultiLine"),
|
2013-08-15 10:44:47 +00:00
|
|
|
textAttr(caseAttr.getString(R.styleable.Keyboard_Case_localeCode),
|
2012-08-30 05:22:40 +00:00
|
|
|
"localeCode"),
|
2013-08-15 10:44:47 +00:00
|
|
|
textAttr(caseAttr.getString(R.styleable.Keyboard_Case_languageCode),
|
2012-08-30 05:22:40 +00:00
|
|
|
"languageCode"),
|
2013-08-15 10:44:47 +00:00
|
|
|
textAttr(caseAttr.getString(R.styleable.Keyboard_Case_countryCode),
|
2012-08-30 05:22:40 +00:00
|
|
|
"countryCode"),
|
|
|
|
selected ? "" : " skipped");
|
|
|
|
}
|
|
|
|
|
|
|
|
return selected;
|
|
|
|
} finally {
|
2013-08-15 10:44:47 +00:00
|
|
|
caseAttr.recycle();
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean matchInteger(final TypedArray a, final int index, final 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(final TypedArray a, final int index, final 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(final TypedArray a, final int index, final 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(final TypedArray a, final int index, final int intValue,
|
|
|
|
final 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);
|
2013-08-15 10:44:47 +00:00
|
|
|
}
|
|
|
|
if (ResourceUtils.isStringValue(v)) {
|
2012-08-30 05:22:40 +00:00
|
|
|
return StringUtils.containsInArray(strValue, a.getString(index).split("\\|"));
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean parseDefault(final XmlPullParser parser, final KeyboardRow row,
|
|
|
|
final 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(final XmlPullParser parser, final boolean skip)
|
|
|
|
throws XmlPullParserException, IOException {
|
2013-08-15 10:44:47 +00:00
|
|
|
final AttributeSet attr = Xml.asAttributeSet(parser);
|
|
|
|
final TypedArray keyStyleAttr = mResources.obtainAttributes(
|
|
|
|
attr, R.styleable.Keyboard_KeyStyle);
|
|
|
|
final TypedArray keyAttrs = mResources.obtainAttributes(attr, R.styleable.Keyboard_Key);
|
2012-08-30 05:22:40 +00:00
|
|
|
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(final KeyboardRow row) {
|
2013-01-30 04:08:44 +00:00
|
|
|
addEdgeSpace(mParams.mLeftPadding, row);
|
2012-08-30 05:22:40 +00:00
|
|
|
mCurrentRow = row;
|
|
|
|
mLeftEdge = true;
|
|
|
|
mRightEdgeKey = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void endRow(final KeyboardRow row) {
|
|
|
|
if (mCurrentRow == null) {
|
2013-03-21 03:27:33 +00:00
|
|
|
throw new RuntimeException("orphan end row tag");
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
if (mRightEdgeKey != null) {
|
|
|
|
mRightEdgeKey.markAsRightEdge(mParams);
|
|
|
|
mRightEdgeKey = null;
|
|
|
|
}
|
2013-01-30 04:08:44 +00:00
|
|
|
addEdgeSpace(mParams.mRightPadding, row);
|
2013-08-19 02:00:52 +00:00
|
|
|
mCurrentY += row.getRowHeight();
|
2012-08-30 05:22:40 +00:00
|
|
|
mCurrentRow = null;
|
|
|
|
mTopEdge = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void endKey(final Key key) {
|
|
|
|
mParams.onAddKey(key);
|
|
|
|
if (mLeftEdge) {
|
|
|
|
key.markAsLeftEdge(mParams);
|
|
|
|
mLeftEdge = false;
|
|
|
|
}
|
|
|
|
if (mTopEdge) {
|
|
|
|
key.markAsTopEdge(mParams);
|
|
|
|
}
|
|
|
|
mRightEdgeKey = key;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void endKeyboard() {
|
2013-08-26 04:09:19 +00:00
|
|
|
// {@link #parseGridRows(XmlPullParser,boolean)} may populate keyboard rows higher than
|
|
|
|
// previously expected.
|
|
|
|
final int actualHeight = mCurrentY - mParams.mVerticalGap + mParams.mBottomPadding;
|
|
|
|
mParams.mOccupiedHeight = Math.max(mParams.mOccupiedHeight, actualHeight);
|
2012-08-30 05:22:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void addEdgeSpace(final float width, final KeyboardRow row) {
|
|
|
|
row.advanceXPos(width);
|
|
|
|
mLeftEdge = false;
|
|
|
|
mRightEdgeKey = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static String textAttr(final String value, final String name) {
|
|
|
|
return value != null ? String.format(" %s=%s", name, value) : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
private static String booleanAttr(final TypedArray a, final int index, final String name) {
|
|
|
|
return a.hasValue(index)
|
|
|
|
? String.format(" %s=%s", name, a.getBoolean(index, false)) : "";
|
|
|
|
}
|
|
|
|
}
|