2010-08-20 05:35:02 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
package com.android.inputmethod.keyboard;
|
2010-08-20 05:35:02 +00:00
|
|
|
|
|
|
|
import android.content.Context;
|
2010-08-27 12:23:51 +00:00
|
|
|
import android.content.res.Resources;
|
2010-08-20 05:35:02 +00:00
|
|
|
import android.content.res.TypedArray;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.Canvas;
|
2011-02-20 05:44:59 +00:00
|
|
|
import android.graphics.Color;
|
2010-08-20 05:35:02 +00:00
|
|
|
import android.graphics.Paint;
|
2010-08-24 13:46:36 +00:00
|
|
|
import android.graphics.Paint.Align;
|
2010-08-20 05:35:02 +00:00
|
|
|
import android.graphics.PorterDuff;
|
|
|
|
import android.graphics.Rect;
|
|
|
|
import android.graphics.Region.Op;
|
2010-08-24 13:46:36 +00:00
|
|
|
import android.graphics.Typeface;
|
2010-08-20 05:35:02 +00:00
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.os.Message;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
import android.util.TypedValue;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
2011-04-13 05:12:24 +00:00
|
|
|
import android.view.ViewGroup;
|
2010-08-20 05:35:02 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
2011-06-20 15:11:17 +00:00
|
|
|
import com.android.inputmethod.compat.FrameLayoutCompatUtils;
|
2011-06-15 04:38:58 +00:00
|
|
|
import com.android.inputmethod.latin.LatinImeLogger;
|
|
|
|
import com.android.inputmethod.latin.R;
|
2011-06-24 18:54:11 +00:00
|
|
|
import com.android.inputmethod.latin.StaticInnerHandlerWrapper;
|
2011-06-15 04:38:58 +00:00
|
|
|
|
2010-10-12 06:02:44 +00:00
|
|
|
import java.util.HashMap;
|
2010-08-20 05:35:02 +00:00
|
|
|
|
|
|
|
/**
|
2011-07-01 04:07:59 +00:00
|
|
|
* A view that renders a virtual {@link Keyboard}.
|
2010-08-20 05:35:02 +00:00
|
|
|
*
|
2011-05-13 10:29:25 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_backgroundDimAmount
|
2010-12-02 09:46:21 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyBackground
|
2011-05-13 10:29:25 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyLetterRatio
|
2011-06-25 10:38:55 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyLargeLetterRatio
|
2011-06-15 03:36:53 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyLabelRatio
|
|
|
|
* @attr ref R.styleable#KeyboardView_keyHintLetterRatio
|
|
|
|
* @attr ref R.styleable#KeyboardView_keyUppercaseLetterRatio
|
2011-06-25 10:38:55 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyHintLabelRatio
|
2011-06-28 07:32:39 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyLabelHorizontalPadding
|
|
|
|
* @attr ref R.styleable#KeyboardView_keyHintLetterPadding
|
|
|
|
* @attr ref R.styleable#KeyboardView_keyUppercaseLetterPadding
|
2011-06-15 03:36:53 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyTextStyle
|
2010-12-02 09:46:21 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyPreviewLayout
|
2011-06-25 10:38:55 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyPreviewTextRatio
|
2010-12-02 09:46:21 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyPreviewOffset
|
2011-05-13 10:29:25 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyPreviewHeight
|
2010-12-02 09:46:21 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyTextColor
|
2011-05-13 10:29:25 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyTextColorDisabled
|
2011-06-15 03:36:53 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyHintLetterColor
|
2011-06-25 10:38:55 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyHintLabelColor
|
2011-06-15 03:36:53 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_keyUppercaseLetterInactivatedColor
|
|
|
|
* @attr ref R.styleable#KeyboardView_keyUppercaseLetterActivatedColor
|
2011-05-13 10:29:25 +00:00
|
|
|
* @attr ref R.styleable#KeyboardView_shadowColor
|
|
|
|
* @attr ref R.styleable#KeyboardView_shadowRadius
|
2010-08-20 05:35:02 +00:00
|
|
|
*/
|
2011-07-11 02:31:02 +00:00
|
|
|
public class KeyboardView extends View implements PointerTracker.DrawingProxy {
|
2010-11-05 09:41:12 +00:00
|
|
|
private static final boolean DEBUG_KEYBOARD_GRID = false;
|
2010-08-27 12:23:51 +00:00
|
|
|
|
|
|
|
// Miscellaneous constants
|
2010-08-20 05:35:02 +00:00
|
|
|
private static final int[] LONG_PRESSABLE_STATE_SET = { android.R.attr.state_long_pressable };
|
|
|
|
|
2010-08-27 12:23:51 +00:00
|
|
|
// XML attribute
|
2011-05-13 10:29:25 +00:00
|
|
|
private final float mBackgroundDimAmount;
|
2010-08-27 12:23:51 +00:00
|
|
|
|
2011-06-27 15:54:14 +00:00
|
|
|
// HORIZONTAL ELLIPSIS "...", character for popup hint.
|
|
|
|
private static final String POPUP_HINT_CHAR = "\u2026";
|
|
|
|
|
2010-08-27 12:23:51 +00:00
|
|
|
// Main keyboard
|
2010-12-02 09:46:21 +00:00
|
|
|
private Keyboard mKeyboard;
|
2011-06-28 07:32:39 +00:00
|
|
|
private final KeyDrawParams mKeyDrawParams;
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-04-19 06:18:20 +00:00
|
|
|
// Key preview
|
2011-06-28 07:32:39 +00:00
|
|
|
private final KeyPreviewDrawParams mKeyPreviewDrawParams;
|
2011-06-27 08:51:36 +00:00
|
|
|
private final TextView mPreviewText;
|
2011-05-11 11:51:07 +00:00
|
|
|
private boolean mShowKeyPreviewPopup = true;
|
2010-09-16 05:54:45 +00:00
|
|
|
private final int mDelayBeforePreview;
|
2011-05-11 11:51:07 +00:00
|
|
|
private int mDelayAfterPreview;
|
2011-04-18 08:00:58 +00:00
|
|
|
private ViewGroup mPreviewPlacer;
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2010-08-27 12:23:51 +00:00
|
|
|
// Drawing
|
2010-08-20 05:35:02 +00:00
|
|
|
/** Whether the keyboard bitmap needs to be redrawn before it's blitted. **/
|
|
|
|
private boolean mDrawPending;
|
2011-02-01 05:02:22 +00:00
|
|
|
/** Notes if the keyboard just changed, so that we could possibly reallocate the mBuffer. */
|
|
|
|
private boolean mKeyboardChanged;
|
2010-08-20 05:35:02 +00:00
|
|
|
/** The dirty region in the keyboard bitmap */
|
2010-08-27 12:23:51 +00:00
|
|
|
private final Rect mDirtyRect = new Rect();
|
2011-02-01 05:02:22 +00:00
|
|
|
/** The key to invalidate. */
|
|
|
|
private Key mInvalidatedKey;
|
|
|
|
/** The dirty region for single key drawing */
|
|
|
|
private final Rect mInvalidatedKeyRect = new Rect();
|
2010-08-20 05:35:02 +00:00
|
|
|
/** The keyboard bitmap for faster updates */
|
|
|
|
private Bitmap mBuffer;
|
|
|
|
/** The canvas for the above mutable keyboard bitmap */
|
|
|
|
private Canvas mCanvas;
|
2011-06-15 03:36:53 +00:00
|
|
|
private final Paint mPaint = new Paint();
|
2010-10-12 06:02:44 +00:00
|
|
|
// This map caches key label text height in pixel as value and key label text size as map key.
|
2011-06-28 07:32:39 +00:00
|
|
|
private static final HashMap<Integer, Float> sTextHeightCache =
|
|
|
|
new HashMap<Integer, Float>();
|
2011-06-15 03:36:53 +00:00
|
|
|
// This map caches key label text width in pixel as value and key label text size as map key.
|
2011-06-28 07:32:39 +00:00
|
|
|
private static final HashMap<Integer, Float> sTextWidthCache =
|
|
|
|
new HashMap<Integer, Float>();
|
2011-06-15 03:36:53 +00:00
|
|
|
private static final String KEY_LABEL_REFERENCE_CHAR = "M";
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-06-27 18:01:35 +00:00
|
|
|
private static final int MEASURESPEC_UNSPECIFIED = MeasureSpec.makeMeasureSpec(
|
|
|
|
0, MeasureSpec.UNSPECIFIED);
|
|
|
|
|
2011-07-04 11:58:58 +00:00
|
|
|
private final DrawingHandler mDrawingHandler = new DrawingHandler(this);
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-07-04 11:58:58 +00:00
|
|
|
public static class DrawingHandler extends StaticInnerHandlerWrapper<KeyboardView> {
|
2011-04-19 06:18:20 +00:00
|
|
|
private static final int MSG_SHOW_KEY_PREVIEW = 1;
|
|
|
|
private static final int MSG_DISMISS_KEY_PREVIEW = 2;
|
2010-08-24 13:46:36 +00:00
|
|
|
|
2011-07-04 11:58:58 +00:00
|
|
|
public DrawingHandler(KeyboardView outerInstance) {
|
2011-06-24 18:54:11 +00:00
|
|
|
super(outerInstance);
|
|
|
|
}
|
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
@Override
|
|
|
|
public void handleMessage(Message msg) {
|
2011-06-24 18:54:11 +00:00
|
|
|
final KeyboardView keyboardView = getOuterInstance();
|
2011-04-27 05:14:45 +00:00
|
|
|
final PointerTracker tracker = (PointerTracker) msg.obj;
|
2010-08-20 05:35:02 +00:00
|
|
|
switch (msg.what) {
|
2011-04-27 05:14:45 +00:00
|
|
|
case MSG_SHOW_KEY_PREVIEW:
|
2011-06-24 18:54:11 +00:00
|
|
|
keyboardView.showKey(msg.arg1, tracker);
|
2011-04-27 05:14:45 +00:00
|
|
|
break;
|
|
|
|
case MSG_DISMISS_KEY_PREVIEW:
|
2011-07-17 23:37:01 +00:00
|
|
|
if (keyboardView.mPreviewText != null) {
|
|
|
|
keyboardView.mPreviewText.setVisibility(View.INVISIBLE);
|
|
|
|
}
|
2011-04-27 05:14:45 +00:00
|
|
|
break;
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-19 06:18:20 +00:00
|
|
|
public void showKeyPreview(long delay, int keyIndex, PointerTracker tracker) {
|
2011-06-24 18:54:11 +00:00
|
|
|
final KeyboardView keyboardView = getOuterInstance();
|
2011-04-19 06:18:20 +00:00
|
|
|
removeMessages(MSG_SHOW_KEY_PREVIEW);
|
2011-06-24 18:54:11 +00:00
|
|
|
if (keyboardView.mPreviewText.getVisibility() == VISIBLE || delay == 0) {
|
2010-08-31 11:21:45 +00:00
|
|
|
// Show right away, if it's already visible and finger is moving around
|
2011-06-24 18:54:11 +00:00
|
|
|
keyboardView.showKey(keyIndex, tracker);
|
2010-08-31 11:21:45 +00:00
|
|
|
} else {
|
2011-04-19 06:18:20 +00:00
|
|
|
sendMessageDelayed(
|
|
|
|
obtainMessage(MSG_SHOW_KEY_PREVIEW, keyIndex, 0, tracker), delay);
|
2010-08-31 11:21:45 +00:00
|
|
|
}
|
2010-08-27 12:04:11 +00:00
|
|
|
}
|
|
|
|
|
2011-04-19 06:18:20 +00:00
|
|
|
public void cancelShowKeyPreview(PointerTracker tracker) {
|
|
|
|
removeMessages(MSG_SHOW_KEY_PREVIEW, tracker);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelAllShowKeyPreviews() {
|
|
|
|
removeMessages(MSG_SHOW_KEY_PREVIEW);
|
2010-08-27 12:04:11 +00:00
|
|
|
}
|
|
|
|
|
2011-04-19 06:18:20 +00:00
|
|
|
public void dismissKeyPreview(long delay, PointerTracker tracker) {
|
|
|
|
sendMessageDelayed(obtainMessage(MSG_DISMISS_KEY_PREVIEW, tracker), delay);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2011-04-19 06:18:20 +00:00
|
|
|
public void cancelDismissKeyPreview(PointerTracker tracker) {
|
|
|
|
removeMessages(MSG_DISMISS_KEY_PREVIEW, tracker);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelAllDismissKeyPreviews() {
|
|
|
|
removeMessages(MSG_DISMISS_KEY_PREVIEW);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void cancelAllMessages() {
|
2011-04-19 06:18:20 +00:00
|
|
|
cancelAllShowKeyPreviews();
|
|
|
|
cancelAllDismissKeyPreviews();
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
2010-12-10 06:24:28 +00:00
|
|
|
}
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static class KeyDrawParams {
|
|
|
|
// XML attributes
|
|
|
|
public final int mKeyTextColor;
|
|
|
|
public final int mKeyTextInactivatedColor;
|
|
|
|
public final Typeface mKeyTextStyle;
|
|
|
|
public final float mKeyLabelHorizontalPadding;
|
|
|
|
public final float mKeyHintLetterPadding;
|
|
|
|
public final float mKeyUppercaseLetterPadding;
|
|
|
|
public final int mShadowColor;
|
|
|
|
public final float mShadowRadius;
|
|
|
|
public final Drawable mKeyBackground;
|
|
|
|
public final int mKeyHintLetterColor;
|
|
|
|
public final int mKeyHintLabelColor;
|
|
|
|
public final int mKeyUppercaseLetterInactivatedColor;
|
|
|
|
public final int mKeyUppercaseLetterActivatedColor;
|
|
|
|
|
|
|
|
private final float mKeyLetterRatio;
|
|
|
|
private final float mKeyLargeLetterRatio;
|
|
|
|
private final float mKeyLabelRatio;
|
|
|
|
private final float mKeyHintLetterRatio;
|
|
|
|
private final float mKeyUppercaseLetterRatio;
|
|
|
|
private final float mKeyHintLabelRatio;
|
|
|
|
|
|
|
|
public final Rect mPadding = new Rect();
|
|
|
|
public int mKeyLetterSize;
|
|
|
|
public int mKeyLargeLetterSize;
|
|
|
|
public int mKeyLabelSize;
|
|
|
|
public int mKeyHintLetterSize;
|
|
|
|
public int mKeyUppercaseLetterSize;
|
|
|
|
public int mKeyHintLabelSize;
|
|
|
|
|
|
|
|
public KeyDrawParams(TypedArray a) {
|
|
|
|
mKeyBackground = a.getDrawable(R.styleable.KeyboardView_keyBackground);
|
|
|
|
mKeyLetterRatio = getRatio(a, R.styleable.KeyboardView_keyLetterRatio);
|
|
|
|
mKeyLargeLetterRatio = getRatio(a, R.styleable.KeyboardView_keyLargeLetterRatio);
|
|
|
|
mKeyLabelRatio = getRatio(a, R.styleable.KeyboardView_keyLabelRatio);
|
|
|
|
mKeyHintLetterRatio = getRatio(a, R.styleable.KeyboardView_keyHintLetterRatio);
|
|
|
|
mKeyUppercaseLetterRatio = getRatio(a,
|
|
|
|
R.styleable.KeyboardView_keyUppercaseLetterRatio);
|
|
|
|
mKeyHintLabelRatio = getRatio(a, R.styleable.KeyboardView_keyHintLabelRatio);
|
|
|
|
mKeyLabelHorizontalPadding = a.getDimension(
|
|
|
|
R.styleable.KeyboardView_keyLabelHorizontalPadding, 0);
|
|
|
|
mKeyHintLetterPadding = a.getDimension(
|
|
|
|
R.styleable.KeyboardView_keyHintLetterPadding, 0);
|
|
|
|
mKeyUppercaseLetterPadding = a.getDimension(
|
|
|
|
R.styleable.KeyboardView_keyUppercaseLetterPadding, 0);
|
|
|
|
mKeyTextColor = a.getColor(R.styleable.KeyboardView_keyTextColor, 0xFF000000);
|
|
|
|
mKeyTextInactivatedColor = a.getColor(
|
|
|
|
R.styleable.KeyboardView_keyTextInactivatedColor, 0xFF000000);
|
|
|
|
mKeyHintLetterColor = a.getColor(R.styleable.KeyboardView_keyHintLetterColor, 0);
|
|
|
|
mKeyHintLabelColor = a.getColor(R.styleable.KeyboardView_keyHintLabelColor, 0);
|
|
|
|
mKeyUppercaseLetterInactivatedColor = a.getColor(
|
|
|
|
R.styleable.KeyboardView_keyUppercaseLetterInactivatedColor, 0);
|
|
|
|
mKeyUppercaseLetterActivatedColor = a.getColor(
|
|
|
|
R.styleable.KeyboardView_keyUppercaseLetterActivatedColor, 0);
|
|
|
|
mKeyTextStyle = Typeface.defaultFromStyle(
|
|
|
|
a.getInt(R.styleable.KeyboardView_keyTextStyle, Typeface.NORMAL));
|
|
|
|
mShadowColor = a.getColor(R.styleable.KeyboardView_shadowColor, 0);
|
|
|
|
mShadowRadius = a.getFloat(R.styleable.KeyboardView_shadowRadius, 0f);
|
|
|
|
|
|
|
|
mKeyBackground.getPadding(mPadding);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateKeyHeight(int keyHeight) {
|
|
|
|
mKeyLetterSize = (int)(keyHeight * mKeyLetterRatio);
|
|
|
|
mKeyLargeLetterSize = (int)(keyHeight * mKeyLargeLetterRatio);
|
|
|
|
mKeyLabelSize = (int)(keyHeight * mKeyLabelRatio);
|
|
|
|
mKeyHintLetterSize = (int)(keyHeight * mKeyHintLetterRatio);
|
|
|
|
mKeyUppercaseLetterSize = (int)(keyHeight * mKeyUppercaseLetterRatio);
|
|
|
|
mKeyHintLabelSize = (int)(keyHeight * mKeyHintLabelRatio);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class KeyPreviewDrawParams {
|
|
|
|
// XML attributes.
|
|
|
|
public final Drawable mPreviewBackground;
|
|
|
|
public final Drawable mPreviewLeftBackground;
|
|
|
|
public final Drawable mPreviewRightBackground;
|
|
|
|
public final int mPreviewTextColor;
|
|
|
|
public final int mPreviewOffset;
|
|
|
|
public final int mPreviewHeight;
|
|
|
|
public final Typeface mKeyTextStyle;
|
|
|
|
|
|
|
|
private final float mPreviewTextRatio;
|
|
|
|
private final float mKeyLetterRatio;
|
|
|
|
|
|
|
|
public int mPreviewTextSize;
|
|
|
|
public int mKeyLetterSize;
|
|
|
|
public final int[] mCoordinates = new int[2];
|
|
|
|
|
2011-07-01 05:21:25 +00:00
|
|
|
private static final int PREVIEW_ALPHA = 240;
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
public KeyPreviewDrawParams(TypedArray a, KeyDrawParams keyDrawParams) {
|
|
|
|
mPreviewBackground = a.getDrawable(R.styleable.KeyboardView_keyPreviewBackground);
|
|
|
|
mPreviewLeftBackground = a.getDrawable(
|
|
|
|
R.styleable.KeyboardView_keyPreviewLeftBackground);
|
|
|
|
mPreviewRightBackground = a.getDrawable(
|
|
|
|
R.styleable.KeyboardView_keyPreviewRightBackground);
|
2011-07-01 05:21:25 +00:00
|
|
|
setAlpha(mPreviewBackground, PREVIEW_ALPHA);
|
|
|
|
setAlpha(mPreviewLeftBackground, PREVIEW_ALPHA);
|
|
|
|
setAlpha(mPreviewRightBackground, PREVIEW_ALPHA);
|
2011-06-28 07:32:39 +00:00
|
|
|
mPreviewOffset = a.getDimensionPixelOffset(
|
|
|
|
R.styleable.KeyboardView_keyPreviewOffset, 0);
|
|
|
|
mPreviewHeight = a.getDimensionPixelSize(
|
|
|
|
R.styleable.KeyboardView_keyPreviewHeight, 80);
|
|
|
|
mPreviewTextRatio = getRatio(a, R.styleable.KeyboardView_keyPreviewTextRatio);
|
|
|
|
mPreviewTextColor = a.getColor(R.styleable.KeyboardView_keyPreviewTextColor, 0);
|
|
|
|
|
|
|
|
mKeyLetterRatio = keyDrawParams.mKeyLetterRatio;
|
|
|
|
mKeyTextStyle = keyDrawParams.mKeyTextStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateKeyHeight(int keyHeight) {
|
|
|
|
mPreviewTextSize = (int)(keyHeight * mPreviewTextRatio);
|
|
|
|
mKeyLetterSize = (int)(keyHeight * mKeyLetterRatio);
|
|
|
|
}
|
2011-07-01 05:21:25 +00:00
|
|
|
|
|
|
|
private static void setAlpha(Drawable drawable, int alpha) {
|
|
|
|
if (drawable == null)
|
|
|
|
return;
|
|
|
|
drawable.setAlpha(alpha);
|
|
|
|
}
|
2011-06-28 07:32:39 +00:00
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
public KeyboardView(Context context, AttributeSet attrs) {
|
2010-08-20 05:35:02 +00:00
|
|
|
this(context, attrs, R.attr.keyboardViewStyle);
|
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
public KeyboardView(Context context, AttributeSet attrs, int defStyle) {
|
2010-08-20 05:35:02 +00:00
|
|
|
super(context, attrs, defStyle);
|
|
|
|
|
2011-01-19 11:59:57 +00:00
|
|
|
final TypedArray a = context.obtainStyledAttributes(
|
2010-12-02 09:46:21 +00:00
|
|
|
attrs, R.styleable.KeyboardView, defStyle, R.style.KeyboardView);
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
mKeyDrawParams = new KeyDrawParams(a);
|
|
|
|
mKeyPreviewDrawParams = new KeyPreviewDrawParams(a, mKeyDrawParams);
|
2011-05-13 10:29:25 +00:00
|
|
|
final int previewLayout = a.getResourceId(R.styleable.KeyboardView_keyPreviewLayout, 0);
|
2011-06-27 08:51:36 +00:00
|
|
|
if (previewLayout != 0) {
|
|
|
|
mPreviewText = (TextView) LayoutInflater.from(context).inflate(previewLayout, null);
|
|
|
|
} else {
|
|
|
|
mPreviewText = null;
|
|
|
|
mShowKeyPreviewPopup = false;
|
|
|
|
}
|
2011-05-13 10:29:25 +00:00
|
|
|
mBackgroundDimAmount = a.getFloat(R.styleable.KeyboardView_backgroundDimAmount, 0.5f);
|
2011-06-15 02:49:57 +00:00
|
|
|
a.recycle();
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2010-09-16 05:54:45 +00:00
|
|
|
final Resources res = getResources();
|
|
|
|
|
|
|
|
mDelayBeforePreview = res.getInteger(R.integer.config_delay_before_preview);
|
|
|
|
mDelayAfterPreview = res.getInteger(R.integer.config_delay_after_preview);
|
2010-08-20 05:35:02 +00:00
|
|
|
|
|
|
|
mPaint.setAntiAlias(true);
|
|
|
|
mPaint.setTextAlign(Align.CENTER);
|
|
|
|
mPaint.setAlpha(255);
|
|
|
|
}
|
|
|
|
|
2011-05-12 14:49:19 +00:00
|
|
|
// Read fraction value in TypedArray as float.
|
|
|
|
private static float getRatio(TypedArray a, int index) {
|
|
|
|
return a.getFraction(index, 1000, 1000, 1) / 1000.0f;
|
|
|
|
}
|
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
/**
|
|
|
|
* Attaches a keyboard to this view. The keyboard can be switched at any time and the
|
|
|
|
* view will re-layout itself to accommodate the keyboard.
|
2010-12-02 09:46:21 +00:00
|
|
|
* @see Keyboard
|
2010-08-20 05:35:02 +00:00
|
|
|
* @see #getKeyboard()
|
|
|
|
* @param keyboard the keyboard to display in this view
|
|
|
|
*/
|
2010-12-02 09:46:21 +00:00
|
|
|
public void setKeyboard(Keyboard keyboard) {
|
2010-08-20 05:35:02 +00:00
|
|
|
// Remove any pending messages, except dismissing preview
|
2011-07-04 11:58:58 +00:00
|
|
|
mDrawingHandler.cancelAllShowKeyPreviews();
|
2010-08-20 05:35:02 +00:00
|
|
|
mKeyboard = keyboard;
|
2010-09-01 14:18:39 +00:00
|
|
|
LatinImeLogger.onSetKeyboard(keyboard);
|
2010-08-20 05:35:02 +00:00
|
|
|
requestLayout();
|
|
|
|
mKeyboardChanged = true;
|
|
|
|
invalidateAllKeys();
|
2011-05-12 14:49:19 +00:00
|
|
|
final int keyHeight = keyboard.getRowHeight() - keyboard.getVerticalGap();
|
2011-06-28 07:32:39 +00:00
|
|
|
mKeyDrawParams.updateKeyHeight(keyHeight);
|
|
|
|
mKeyPreviewDrawParams.updateKeyHeight(keyHeight);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current keyboard being displayed by this view.
|
|
|
|
* @return the currently attached keyboard
|
2010-12-02 09:46:21 +00:00
|
|
|
* @see #setKeyboard(Keyboard)
|
2010-08-20 05:35:02 +00:00
|
|
|
*/
|
2010-12-02 09:46:21 +00:00
|
|
|
public Keyboard getKeyboard() {
|
2010-08-20 05:35:02 +00:00
|
|
|
return mKeyboard;
|
|
|
|
}
|
|
|
|
|
2011-01-14 18:49:21 +00:00
|
|
|
/**
|
2011-05-11 11:48:20 +00:00
|
|
|
* Enables or disables the key feedback popup. This is a popup that shows a magnified
|
2010-08-20 05:35:02 +00:00
|
|
|
* version of the depressed key. By default the preview is enabled.
|
2011-04-19 06:18:20 +00:00
|
|
|
* @param previewEnabled whether or not to enable the key feedback preview
|
2011-05-11 11:51:07 +00:00
|
|
|
* @param delay the delay after which the preview is dismissed
|
|
|
|
* @see #isKeyPreviewPopupEnabled()
|
2010-08-20 05:35:02 +00:00
|
|
|
*/
|
2011-05-11 11:51:07 +00:00
|
|
|
public void setKeyPreviewPopupEnabled(boolean previewEnabled, int delay) {
|
|
|
|
mShowKeyPreviewPopup = previewEnabled;
|
|
|
|
mDelayAfterPreview = delay;
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-19 06:18:20 +00:00
|
|
|
* Returns the enabled state of the key feedback preview
|
|
|
|
* @return whether or not the key feedback preview is enabled
|
2011-05-11 11:51:07 +00:00
|
|
|
* @see #setKeyPreviewPopupEnabled(boolean, int)
|
2010-08-20 05:35:02 +00:00
|
|
|
*/
|
2011-05-11 11:51:07 +00:00
|
|
|
public boolean isKeyPreviewPopupEnabled() {
|
|
|
|
return mShowKeyPreviewPopup;
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
|
|
|
|
// Round up a little
|
|
|
|
if (mKeyboard == null) {
|
|
|
|
setMeasuredDimension(
|
|
|
|
getPaddingLeft() + getPaddingRight(), getPaddingTop() + getPaddingBottom());
|
|
|
|
} else {
|
|
|
|
int width = mKeyboard.getMinWidth() + getPaddingLeft() + getPaddingRight();
|
|
|
|
if (MeasureSpec.getSize(widthMeasureSpec) < width + 10) {
|
|
|
|
width = MeasureSpec.getSize(widthMeasureSpec);
|
|
|
|
}
|
|
|
|
setMeasuredDimension(
|
|
|
|
width, mKeyboard.getHeight() + getPaddingTop() + getPaddingBottom());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDraw(Canvas canvas) {
|
|
|
|
super.onDraw(canvas);
|
|
|
|
if (mDrawPending || mBuffer == null || mKeyboardChanged) {
|
|
|
|
onBufferDraw();
|
|
|
|
}
|
|
|
|
canvas.drawBitmap(mBuffer, 0, 0, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onBufferDraw() {
|
2011-02-01 05:02:22 +00:00
|
|
|
final int width = getWidth();
|
|
|
|
final int height = getHeight();
|
|
|
|
if (width == 0 || height == 0)
|
|
|
|
return;
|
2010-08-20 05:35:02 +00:00
|
|
|
if (mBuffer == null || mKeyboardChanged) {
|
|
|
|
mKeyboardChanged = false;
|
2011-02-01 05:02:22 +00:00
|
|
|
mDirtyRect.union(0, 0, width, height);
|
|
|
|
}
|
|
|
|
if (mBuffer == null || mBuffer.getWidth() != width || mBuffer.getHeight() != height) {
|
2011-06-20 02:58:56 +00:00
|
|
|
if (mBuffer != null)
|
|
|
|
mBuffer.recycle();
|
2011-02-01 05:02:22 +00:00
|
|
|
mBuffer = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
|
2011-06-20 02:58:56 +00:00
|
|
|
if (mCanvas != null) {
|
|
|
|
mCanvas.setBitmap(mBuffer);
|
|
|
|
} else {
|
|
|
|
mCanvas = new Canvas(mBuffer);
|
|
|
|
}
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
final Canvas canvas = mCanvas;
|
|
|
|
canvas.clipRect(mDirtyRect, Op.REPLACE);
|
2011-04-15 04:05:58 +00:00
|
|
|
canvas.drawColor(Color.BLACK, PorterDuff.Mode.CLEAR);
|
2010-08-20 05:35:02 +00:00
|
|
|
|
|
|
|
if (mKeyboard == null) return;
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
final boolean isManualTemporaryUpperCase = mKeyboard.isManualTemporaryUpperCase();
|
|
|
|
final KeyDrawParams params = mKeyDrawParams;
|
2011-04-15 04:05:58 +00:00
|
|
|
if (mInvalidatedKey != null && mInvalidatedKeyRect.contains(mDirtyRect)) {
|
|
|
|
// Draw a single key.
|
2011-06-28 07:32:39 +00:00
|
|
|
final int keyDrawX = mInvalidatedKey.mX + mInvalidatedKey.mVisualInsetsLeft
|
|
|
|
+ getPaddingLeft();
|
|
|
|
final int keyDrawY = mInvalidatedKey.mY + getPaddingTop();
|
|
|
|
canvas.translate(keyDrawX, keyDrawY);
|
|
|
|
onBufferDrawKey(mInvalidatedKey, canvas, mPaint, params, isManualTemporaryUpperCase);
|
|
|
|
canvas.translate(-keyDrawX, -keyDrawY);
|
2011-04-15 04:05:58 +00:00
|
|
|
} else {
|
|
|
|
// Draw all keys.
|
|
|
|
for (final Key key : mKeyboard.getKeys()) {
|
2011-06-28 07:32:39 +00:00
|
|
|
final int keyDrawX = key.mX + key.mVisualInsetsLeft + getPaddingLeft();
|
|
|
|
final int keyDrawY = key.mY + getPaddingTop();
|
|
|
|
canvas.translate(keyDrawX, keyDrawY);
|
|
|
|
onBufferDrawKey(key, canvas, mPaint, params, isManualTemporaryUpperCase);
|
|
|
|
canvas.translate(-keyDrawX, -keyDrawY);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-05 09:41:12 +00:00
|
|
|
|
2011-04-15 04:05:58 +00:00
|
|
|
// TODO: Move this function to ProximityInfo for getting rid of
|
|
|
|
// public declarations for
|
2011-02-22 08:28:55 +00:00
|
|
|
// GRID_WIDTH and GRID_HEIGHT
|
2010-11-05 09:41:12 +00:00
|
|
|
if (DEBUG_KEYBOARD_GRID) {
|
|
|
|
Paint p = new Paint();
|
|
|
|
p.setStyle(Paint.Style.STROKE);
|
|
|
|
p.setStrokeWidth(1.0f);
|
|
|
|
p.setColor(0x800000c0);
|
2011-04-15 04:05:58 +00:00
|
|
|
int cw = (mKeyboard.getMinWidth() + mKeyboard.GRID_WIDTH - 1)
|
|
|
|
/ mKeyboard.GRID_WIDTH;
|
|
|
|
int ch = (mKeyboard.getHeight() + mKeyboard.GRID_HEIGHT - 1)
|
|
|
|
/ mKeyboard.GRID_HEIGHT;
|
2010-11-05 09:41:12 +00:00
|
|
|
for (int i = 0; i <= mKeyboard.GRID_WIDTH; i++)
|
|
|
|
canvas.drawLine(i * cw, 0, i * cw, ch * mKeyboard.GRID_HEIGHT, p);
|
|
|
|
for (int i = 0; i <= mKeyboard.GRID_HEIGHT; i++)
|
|
|
|
canvas.drawLine(0, i * ch, cw * mKeyboard.GRID_WIDTH, i * ch, p);
|
|
|
|
}
|
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
// Overlay a dark rectangle to dim the keyboard
|
2011-07-01 04:07:59 +00:00
|
|
|
if (needsToDimKeyboard()) {
|
2011-04-15 04:05:58 +00:00
|
|
|
mPaint.setColor((int) (mBackgroundDimAmount * 0xFF) << 24);
|
|
|
|
canvas.drawRect(0, 0, width, height, mPaint);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2011-02-01 05:02:22 +00:00
|
|
|
mInvalidatedKey = null;
|
2010-08-20 05:35:02 +00:00
|
|
|
mDrawPending = false;
|
|
|
|
mDirtyRect.setEmpty();
|
|
|
|
}
|
|
|
|
|
2011-07-01 04:07:59 +00:00
|
|
|
protected boolean needsToDimKeyboard() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static void onBufferDrawKey(final Key key, final Canvas canvas, Paint paint,
|
|
|
|
KeyDrawParams params, boolean isManualTemporaryUpperCase) {
|
|
|
|
final boolean debugShowAlign = LatinImeLogger.sVISUALDEBUG;
|
2011-04-15 04:05:58 +00:00
|
|
|
// Draw key background.
|
2011-06-28 07:32:39 +00:00
|
|
|
final int bgWidth = key.mWidth - key.mVisualInsetsLeft - key.mVisualInsetsRight
|
|
|
|
+ params.mPadding.left + params.mPadding.right;
|
|
|
|
final int bgHeight = key.mHeight + params.mPadding.top + params.mPadding.bottom;
|
|
|
|
final int bgX = -params.mPadding.left;
|
|
|
|
final int bgY = -params.mPadding.top;
|
2011-04-15 04:05:58 +00:00
|
|
|
final int[] drawableState = key.getCurrentDrawableState();
|
2011-06-28 07:32:39 +00:00
|
|
|
final Drawable background = params.mKeyBackground;
|
|
|
|
background.setState(drawableState);
|
|
|
|
final Rect bounds = background.getBounds();
|
|
|
|
if (bgWidth != bounds.right || bgHeight != bounds.bottom) {
|
|
|
|
background.setBounds(0, 0, bgWidth, bgHeight);
|
|
|
|
}
|
|
|
|
canvas.translate(bgX, bgY);
|
|
|
|
background.draw(canvas);
|
|
|
|
if (debugShowAlign) {
|
|
|
|
drawRectangle(canvas, 0, 0, bgWidth, bgHeight, 0x80c00000, new Paint());
|
|
|
|
}
|
|
|
|
canvas.translate(-bgX, -bgY);
|
|
|
|
|
|
|
|
// Draw key top visuals.
|
|
|
|
final int keyWidth = key.mWidth;
|
|
|
|
final int keyHeight = key.mHeight;
|
|
|
|
final float centerX = keyWidth * 0.5f;
|
|
|
|
final float centerY = keyHeight * 0.5f;
|
|
|
|
|
|
|
|
if (debugShowAlign) {
|
|
|
|
drawRectangle(canvas, 0, 0, keyWidth, keyHeight, 0x800000c0, new Paint());
|
2011-04-15 04:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw key label.
|
2011-06-28 07:32:39 +00:00
|
|
|
float positionX = centerX;
|
2011-04-15 04:05:58 +00:00
|
|
|
if (key.mLabel != null) {
|
|
|
|
// Switch the character to uppercase if shift is pressed
|
2011-06-28 07:32:39 +00:00
|
|
|
final CharSequence label = key.getCaseAdjustedLabel();
|
2011-06-25 10:38:55 +00:00
|
|
|
// For characters, use large font. For labels like "Done", use smaller font.
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.setTypeface(key.selectTypeface(params.mKeyTextStyle));
|
|
|
|
final int labelSize = key.selectTextSize(params.mKeyLetterSize,
|
|
|
|
params.mKeyLargeLetterSize, params.mKeyLabelSize, params.mKeyHintLabelSize);
|
2011-06-25 10:38:55 +00:00
|
|
|
paint.setTextSize(labelSize);
|
2011-06-28 07:32:39 +00:00
|
|
|
final float labelCharHeight = getCharHeight(paint);
|
|
|
|
final float labelCharWidth = getCharWidth(paint);
|
2011-04-15 04:05:58 +00:00
|
|
|
|
|
|
|
// Vertical label text alignment.
|
2011-06-28 07:32:39 +00:00
|
|
|
final float baseline = centerY + labelCharHeight / 2;
|
2011-06-25 10:38:55 +00:00
|
|
|
|
2011-04-15 04:05:58 +00:00
|
|
|
// Horizontal label text alignment
|
2011-06-15 03:36:53 +00:00
|
|
|
if ((key.mLabelOption & Key.LABEL_OPTION_ALIGN_LEFT) != 0) {
|
2011-06-28 07:32:39 +00:00
|
|
|
positionX = (int)params.mKeyLabelHorizontalPadding;
|
2011-04-15 04:05:58 +00:00
|
|
|
paint.setTextAlign(Align.LEFT);
|
2011-06-15 03:36:53 +00:00
|
|
|
} else if ((key.mLabelOption & Key.LABEL_OPTION_ALIGN_RIGHT) != 0) {
|
2011-06-28 07:32:39 +00:00
|
|
|
positionX = keyWidth - (int)params.mKeyLabelHorizontalPadding;
|
2011-04-15 04:05:58 +00:00
|
|
|
paint.setTextAlign(Align.RIGHT);
|
2011-06-25 10:38:55 +00:00
|
|
|
} else if ((key.mLabelOption & Key.LABEL_OPTION_ALIGN_LEFT_OF_CENTER) != 0) {
|
|
|
|
// TODO: Parameterise this?
|
|
|
|
positionX = centerX - labelCharWidth * 7 / 4;
|
|
|
|
paint.setTextAlign(Align.LEFT);
|
2011-04-15 04:05:58 +00:00
|
|
|
} else {
|
2011-06-25 10:38:55 +00:00
|
|
|
positionX = centerX;
|
2011-04-15 04:05:58 +00:00
|
|
|
paint.setTextAlign(Align.CENTER);
|
|
|
|
}
|
2011-06-25 10:38:55 +00:00
|
|
|
|
2011-06-15 03:36:53 +00:00
|
|
|
if (key.hasUppercaseLetter() && isManualTemporaryUpperCase) {
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.setColor(params.mKeyTextInactivatedColor);
|
2011-04-15 04:05:58 +00:00
|
|
|
} else {
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.setColor(params.mKeyTextColor);
|
2011-04-15 04:05:58 +00:00
|
|
|
}
|
2011-06-23 12:23:44 +00:00
|
|
|
if (key.isEnabled()) {
|
2011-04-15 04:05:58 +00:00
|
|
|
// Set a drop shadow for the text
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.setShadowLayer(params.mShadowRadius, 0, 0, params.mShadowColor);
|
2011-04-15 04:05:58 +00:00
|
|
|
} else {
|
|
|
|
// Make label invisible
|
|
|
|
paint.setColor(Color.TRANSPARENT);
|
|
|
|
}
|
2011-06-25 10:38:55 +00:00
|
|
|
canvas.drawText(label, 0, label.length(), positionX, baseline, paint);
|
2011-04-15 04:05:58 +00:00
|
|
|
// Turn off drop shadow
|
|
|
|
paint.setShadowLayer(0, 0, 0, 0);
|
2011-06-25 10:38:55 +00:00
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
if (debugShowAlign) {
|
|
|
|
final Paint line = new Paint();
|
|
|
|
drawHorizontalLine(canvas, baseline, keyWidth, 0xc0008000, line);
|
|
|
|
drawVerticalLine(canvas, positionX, keyHeight, 0xc0800080, line);
|
|
|
|
}
|
2011-04-15 04:05:58 +00:00
|
|
|
}
|
|
|
|
|
2011-06-25 10:38:55 +00:00
|
|
|
// Draw hint label.
|
|
|
|
if (key.mHintLabel != null) {
|
|
|
|
final CharSequence hint = key.mHintLabel;
|
|
|
|
final int hintColor;
|
|
|
|
final int hintSize;
|
2011-06-28 07:32:39 +00:00
|
|
|
if (key.hasHintLabel()) {
|
|
|
|
hintColor = params.mKeyHintLabelColor;
|
|
|
|
hintSize = params.mKeyHintLabelSize;
|
2011-06-25 10:38:55 +00:00
|
|
|
paint.setTypeface(Typeface.DEFAULT);
|
2011-06-28 07:32:39 +00:00
|
|
|
} else if (key.hasUppercaseLetter()) {
|
|
|
|
hintColor = isManualTemporaryUpperCase
|
|
|
|
? params.mKeyUppercaseLetterActivatedColor
|
|
|
|
: params.mKeyUppercaseLetterInactivatedColor;
|
|
|
|
hintSize = params.mKeyUppercaseLetterSize;
|
|
|
|
} else { // key.hasHintLetter()
|
|
|
|
hintColor = params.mKeyHintLetterColor;
|
|
|
|
hintSize = params.mKeyHintLetterSize;
|
2011-06-15 03:36:53 +00:00
|
|
|
}
|
2011-06-25 10:38:55 +00:00
|
|
|
paint.setColor(hintColor);
|
|
|
|
paint.setTextSize(hintSize);
|
2011-06-28 07:32:39 +00:00
|
|
|
final float hintCharWidth = getCharWidth(paint);
|
2011-06-25 10:38:55 +00:00
|
|
|
final float hintX, hintY;
|
|
|
|
if (key.hasHintLabel()) {
|
|
|
|
// TODO: Generalize the following calculations.
|
2011-06-28 07:32:39 +00:00
|
|
|
hintX = positionX + hintCharWidth * 2;
|
|
|
|
hintY = centerY + getCharHeight(paint) / 2;
|
|
|
|
paint.setTextAlign(Align.LEFT);
|
|
|
|
} else if (key.hasUppercaseLetter()) {
|
|
|
|
hintX = keyWidth - params.mKeyUppercaseLetterPadding - hintCharWidth / 2;
|
|
|
|
hintY = -paint.ascent() + params.mKeyUppercaseLetterPadding;
|
|
|
|
paint.setTextAlign(Align.CENTER);
|
|
|
|
} else { // key.hasHintLetter()
|
|
|
|
hintX = keyWidth - params.mKeyHintLetterPadding - hintCharWidth / 2;
|
|
|
|
hintY = -paint.ascent() + params.mKeyHintLetterPadding;
|
|
|
|
paint.setTextAlign(Align.CENTER);
|
2011-06-25 10:38:55 +00:00
|
|
|
}
|
|
|
|
canvas.drawText(hint, 0, hint.length(), hintX, hintY, paint);
|
2011-06-28 07:32:39 +00:00
|
|
|
|
|
|
|
if (debugShowAlign) {
|
|
|
|
final Paint line = new Paint();
|
|
|
|
drawHorizontalLine(canvas, (int)hintY, keyWidth, 0xc0808000, line);
|
|
|
|
drawVerticalLine(canvas, (int)hintX, keyHeight, 0xc0808000, line);
|
|
|
|
}
|
2011-06-15 03:36:53 +00:00
|
|
|
}
|
|
|
|
|
2011-04-15 04:05:58 +00:00
|
|
|
// Draw key icon.
|
|
|
|
final Drawable icon = key.getIcon();
|
|
|
|
if (key.mLabel == null && icon != null) {
|
2011-06-25 10:38:55 +00:00
|
|
|
final int iconWidth = icon.getIntrinsicWidth();
|
|
|
|
final int iconHeight = icon.getIntrinsicHeight();
|
|
|
|
final int iconX, alignX;
|
2011-06-28 07:32:39 +00:00
|
|
|
final int iconY = (keyHeight - iconHeight) / 2;
|
2011-06-15 03:36:53 +00:00
|
|
|
if ((key.mLabelOption & Key.LABEL_OPTION_ALIGN_LEFT) != 0) {
|
2011-06-28 07:32:39 +00:00
|
|
|
iconX = (int)params.mKeyLabelHorizontalPadding;
|
2011-06-25 10:38:55 +00:00
|
|
|
alignX = iconX;
|
2011-06-15 03:36:53 +00:00
|
|
|
} else if ((key.mLabelOption & Key.LABEL_OPTION_ALIGN_RIGHT) != 0) {
|
2011-06-28 07:32:39 +00:00
|
|
|
iconX = keyWidth - (int)params.mKeyLabelHorizontalPadding - iconWidth;
|
2011-06-25 10:38:55 +00:00
|
|
|
alignX = iconX + iconWidth;
|
2011-04-15 04:05:58 +00:00
|
|
|
} else { // Align center
|
2011-06-28 07:32:39 +00:00
|
|
|
iconX = (keyWidth - iconWidth) / 2;
|
2011-06-25 10:38:55 +00:00
|
|
|
alignX = iconX + iconWidth / 2;
|
|
|
|
}
|
|
|
|
drawIcon(canvas, icon, iconX, iconY, iconWidth, iconHeight);
|
2011-06-28 07:32:39 +00:00
|
|
|
|
|
|
|
if (debugShowAlign) {
|
2011-06-25 10:38:55 +00:00
|
|
|
final Paint line = new Paint();
|
2011-06-28 07:32:39 +00:00
|
|
|
drawVerticalLine(canvas, alignX, keyHeight, 0xc0800080, line);
|
2011-06-25 10:38:55 +00:00
|
|
|
drawRectangle(canvas, iconX, iconY, iconWidth, iconHeight, 0x80c00000, line);
|
2011-04-15 04:05:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-27 15:54:14 +00:00
|
|
|
// Draw popup hint "..." at the bottom right corner of the key.
|
2011-06-15 03:36:53 +00:00
|
|
|
if (key.hasPopupHint()) {
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.setTextSize(params.mKeyHintLetterSize);
|
|
|
|
paint.setColor(params.mKeyHintLabelColor);
|
|
|
|
paint.setTextAlign(Align.CENTER);
|
|
|
|
final float hintX = keyWidth - params.mKeyHintLetterPadding - getCharWidth(paint) / 2;
|
|
|
|
final float hintY = keyHeight - params.mKeyHintLetterPadding;
|
2011-06-27 15:54:14 +00:00
|
|
|
canvas.drawText(POPUP_HINT_CHAR, hintX, hintY, paint);
|
2011-04-15 04:05:58 +00:00
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
if (debugShowAlign) {
|
|
|
|
final Paint line = new Paint();
|
|
|
|
drawHorizontalLine(canvas, (int)hintY, keyWidth, 0xc0808000, line);
|
|
|
|
drawVerticalLine(canvas, (int)hintX, keyHeight, 0xc0808000, line);
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 04:05:58 +00:00
|
|
|
}
|
|
|
|
|
2011-06-25 10:38:55 +00:00
|
|
|
// This method is currently being used only by MiniKeyboardBuilder
|
|
|
|
public int getDefaultLabelSizeAndSetPaint(Paint paint) {
|
2010-11-24 07:59:56 +00:00
|
|
|
// For characters, use large font. For labels like "Done", use small font.
|
2011-06-28 07:32:39 +00:00
|
|
|
final int labelSize = mKeyDrawParams.mKeyLabelSize;
|
2010-11-24 07:59:56 +00:00
|
|
|
paint.setTextSize(labelSize);
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.setTypeface(mKeyDrawParams.mKeyTextStyle);
|
2010-11-24 07:59:56 +00:00
|
|
|
return labelSize;
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static final Rect sTextBounds = new Rect();
|
2011-06-25 10:38:55 +00:00
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static float getCharHeight(Paint paint) {
|
2011-06-25 10:38:55 +00:00
|
|
|
final int labelSize = (int)paint.getTextSize();
|
2011-06-28 07:32:39 +00:00
|
|
|
final Float cachedValue = sTextHeightCache.get(labelSize);
|
2011-06-25 10:38:55 +00:00
|
|
|
if (cachedValue != null)
|
|
|
|
return cachedValue;
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.getTextBounds(KEY_LABEL_REFERENCE_CHAR, 0, 1, sTextBounds);
|
|
|
|
final float height = sTextBounds.height();
|
|
|
|
sTextHeightCache.put(labelSize, height);
|
2011-06-25 10:38:55 +00:00
|
|
|
return height;
|
2010-11-24 07:59:56 +00:00
|
|
|
}
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static float getCharWidth(Paint paint) {
|
2011-06-25 10:38:55 +00:00
|
|
|
final int labelSize = (int)paint.getTextSize();
|
|
|
|
final Typeface face = paint.getTypeface();
|
|
|
|
final Integer key;
|
|
|
|
if (face == Typeface.DEFAULT) {
|
|
|
|
key = labelSize;
|
|
|
|
} else if (face == Typeface.DEFAULT_BOLD) {
|
|
|
|
key = labelSize + 1000;
|
|
|
|
} else if (face == Typeface.MONOSPACE) {
|
|
|
|
key = labelSize + 2000;
|
2011-06-15 03:36:53 +00:00
|
|
|
} else {
|
2011-06-25 10:38:55 +00:00
|
|
|
key = labelSize;
|
2011-06-15 03:36:53 +00:00
|
|
|
}
|
2011-06-25 10:38:55 +00:00
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
final Float cached = sTextWidthCache.get(key);
|
2011-06-25 10:38:55 +00:00
|
|
|
if (cached != null)
|
|
|
|
return cached;
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
paint.getTextBounds(KEY_LABEL_REFERENCE_CHAR, 0, 1, sTextBounds);
|
|
|
|
final float width = sTextBounds.width();
|
|
|
|
sTextWidthCache.put(key, width);
|
2011-06-25 10:38:55 +00:00
|
|
|
return width;
|
2011-06-15 03:36:53 +00:00
|
|
|
}
|
|
|
|
|
2010-11-24 07:59:56 +00:00
|
|
|
private static void drawIcon(Canvas canvas, Drawable icon, int x, int y, int width,
|
|
|
|
int height) {
|
2010-10-19 15:18:50 +00:00
|
|
|
canvas.translate(x, y);
|
|
|
|
icon.setBounds(0, 0, width, height);
|
|
|
|
icon.draw(canvas);
|
|
|
|
canvas.translate(-x, -y);
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static void drawHorizontalLine(Canvas canvas, float y, float w, int color, Paint paint) {
|
2010-11-24 07:59:56 +00:00
|
|
|
paint.setStyle(Paint.Style.STROKE);
|
|
|
|
paint.setStrokeWidth(1.0f);
|
|
|
|
paint.setColor(color);
|
|
|
|
canvas.drawLine(0, y, w, y, paint);
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static void drawVerticalLine(Canvas canvas, float x, float h, int color, Paint paint) {
|
2010-11-24 07:59:56 +00:00
|
|
|
paint.setStyle(Paint.Style.STROKE);
|
|
|
|
paint.setStrokeWidth(1.0f);
|
|
|
|
paint.setColor(color);
|
|
|
|
canvas.drawLine(x, 0, x, h, paint);
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
private static void drawRectangle(Canvas canvas, float x, float y, float w, float h, int color,
|
2010-11-24 07:59:56 +00:00
|
|
|
Paint paint) {
|
|
|
|
paint.setStyle(Paint.Style.STROKE);
|
|
|
|
paint.setStrokeWidth(1.0f);
|
|
|
|
paint.setColor(color);
|
|
|
|
canvas.translate(x, y);
|
|
|
|
canvas.drawRect(0, 0, w, h, paint);
|
|
|
|
canvas.translate(-x, -y);
|
|
|
|
}
|
|
|
|
|
2011-07-01 04:07:59 +00:00
|
|
|
public void cancelAllMessages() {
|
2011-07-04 11:58:58 +00:00
|
|
|
mDrawingHandler.cancelAllMessages();
|
2011-06-27 15:28:29 +00:00
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2011-04-19 06:18:20 +00:00
|
|
|
public void showKeyPreview(int keyIndex, PointerTracker tracker) {
|
2011-05-11 11:51:07 +00:00
|
|
|
if (mShowKeyPreviewPopup) {
|
2011-07-04 11:58:58 +00:00
|
|
|
mDrawingHandler.showKeyPreview(mDelayBeforePreview, keyIndex, tracker);
|
2011-04-19 06:18:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-01 04:07:59 +00:00
|
|
|
@Override
|
|
|
|
public void cancelShowKeyPreview(PointerTracker tracker) {
|
2011-07-04 11:58:58 +00:00
|
|
|
mDrawingHandler.cancelShowKeyPreview(tracker);
|
2011-07-01 04:07:59 +00:00
|
|
|
}
|
|
|
|
|
2011-04-19 06:18:20 +00:00
|
|
|
@Override
|
|
|
|
public void dismissKeyPreview(PointerTracker tracker) {
|
2011-05-11 11:51:07 +00:00
|
|
|
if (mShowKeyPreviewPopup) {
|
2011-07-04 11:58:58 +00:00
|
|
|
mDrawingHandler.cancelShowKeyPreview(tracker);
|
|
|
|
mDrawingHandler.dismissKeyPreview(mDelayAfterPreview, tracker);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-18 08:00:58 +00:00
|
|
|
private void addKeyPreview(TextView keyPreview) {
|
2011-06-20 15:11:17 +00:00
|
|
|
if (mPreviewPlacer == null) {
|
|
|
|
mPreviewPlacer = FrameLayoutCompatUtils.getPlacer(
|
|
|
|
(ViewGroup)getRootView().findViewById(android.R.id.content));
|
2011-04-18 08:00:58 +00:00
|
|
|
}
|
2011-06-20 15:11:17 +00:00
|
|
|
final ViewGroup placer = mPreviewPlacer;
|
|
|
|
placer.addView(keyPreview, FrameLayoutCompatUtils.newLayoutParam(placer, 0, 0));
|
2011-04-18 08:00:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Introduce minimum duration for displaying key previews
|
|
|
|
// TODO: Display up to two key previews when the user presses two keys at the same time
|
|
|
|
private void showKey(final int keyIndex, PointerTracker tracker) {
|
2011-04-27 05:14:45 +00:00
|
|
|
final TextView previewText = mPreviewText;
|
2011-04-19 06:18:20 +00:00
|
|
|
// If the key preview has no parent view yet, add it to the ViewGroup which can place
|
2011-04-18 08:00:58 +00:00
|
|
|
// key preview absolutely in SoftInputWindow.
|
2011-04-27 05:14:45 +00:00
|
|
|
if (previewText.getParent() == null) {
|
|
|
|
addKeyPreview(previewText);
|
2011-04-13 05:12:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-14 08:43:25 +00:00
|
|
|
final Key key = tracker.getKey(keyIndex);
|
2010-10-17 10:10:46 +00:00
|
|
|
// If keyIndex is invalid or IME is already closed, we must not show key preview.
|
2011-04-19 06:18:20 +00:00
|
|
|
// Trying to show key preview while root window is closed causes
|
2010-10-17 10:10:46 +00:00
|
|
|
// WindowManager.BadTokenException.
|
2011-06-27 15:28:29 +00:00
|
|
|
if (key == null)
|
2010-08-31 11:21:45 +00:00
|
|
|
return;
|
2011-04-27 05:14:45 +00:00
|
|
|
|
2011-07-04 11:58:58 +00:00
|
|
|
mDrawingHandler.cancelAllDismissKeyPreviews();
|
2011-06-28 07:32:39 +00:00
|
|
|
final KeyPreviewDrawParams params = mKeyPreviewDrawParams;
|
2011-04-11 02:30:15 +00:00
|
|
|
final int keyDrawX = key.mX + key.mVisualInsetsLeft;
|
|
|
|
final int keyDrawWidth = key.mWidth - key.mVisualInsetsLeft - key.mVisualInsetsRight;
|
2010-10-22 10:35:23 +00:00
|
|
|
// What we show as preview should match what we show on key top in onBufferDraw().
|
2010-12-02 11:54:32 +00:00
|
|
|
if (key.mLabel != null) {
|
2010-10-02 06:17:27 +00:00
|
|
|
// TODO Should take care of temporaryShiftLabel here.
|
2011-04-27 05:14:45 +00:00
|
|
|
previewText.setCompoundDrawables(null, null, null, null);
|
2010-12-20 11:30:26 +00:00
|
|
|
if (key.mLabel.length() > 1) {
|
2011-06-28 07:32:39 +00:00
|
|
|
previewText.setTextSize(TypedValue.COMPLEX_UNIT_PX, params.mKeyLetterSize);
|
2011-04-27 05:14:45 +00:00
|
|
|
previewText.setTypeface(Typeface.DEFAULT_BOLD);
|
2010-08-20 05:35:02 +00:00
|
|
|
} else {
|
2011-06-28 07:32:39 +00:00
|
|
|
previewText.setTextSize(TypedValue.COMPLEX_UNIT_PX, params.mPreviewTextSize);
|
|
|
|
previewText.setTypeface(params.mKeyTextStyle);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
2011-06-28 07:32:39 +00:00
|
|
|
previewText.setText(key.getCaseAdjustedLabel());
|
2010-10-22 10:35:23 +00:00
|
|
|
} else {
|
2010-12-03 04:17:26 +00:00
|
|
|
final Drawable previewIcon = key.getPreviewIcon();
|
2011-04-27 05:14:45 +00:00
|
|
|
previewText.setCompoundDrawables(null, null, null,
|
2010-12-03 04:17:26 +00:00
|
|
|
previewIcon != null ? previewIcon : key.getIcon());
|
2011-04-27 05:14:45 +00:00
|
|
|
previewText.setText(null);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
2011-07-17 22:23:52 +00:00
|
|
|
previewText.setBackgroundDrawable(params.mPreviewBackground);
|
2011-04-19 06:18:20 +00:00
|
|
|
|
2011-06-27 18:01:35 +00:00
|
|
|
previewText.measure(MEASURESPEC_UNSPECIFIED, MEASURESPEC_UNSPECIFIED);
|
2011-04-27 05:14:45 +00:00
|
|
|
final int previewWidth = Math.max(previewText.getMeasuredWidth(), keyDrawWidth
|
|
|
|
+ previewText.getPaddingLeft() + previewText.getPaddingRight());
|
2011-06-28 07:32:39 +00:00
|
|
|
final int previewHeight = params.mPreviewHeight;
|
|
|
|
getLocationInWindow(params.mCoordinates);
|
|
|
|
int previewX = keyDrawX - (previewWidth - keyDrawWidth) / 2 + params.mCoordinates[0];
|
|
|
|
final int previewY = key.mY - previewHeight
|
|
|
|
+ params.mCoordinates[1] + params.mPreviewOffset;
|
|
|
|
if (previewX < 0 && params.mPreviewLeftBackground != null) {
|
|
|
|
previewText.setBackgroundDrawable(params.mPreviewLeftBackground);
|
2011-06-27 18:01:35 +00:00
|
|
|
previewX = 0;
|
2011-06-28 07:32:39 +00:00
|
|
|
} else if (previewX + previewWidth > getWidth() && params.mPreviewRightBackground != null) {
|
|
|
|
previewText.setBackgroundDrawable(params.mPreviewRightBackground);
|
2011-06-27 18:01:35 +00:00
|
|
|
previewX = getWidth() - previewWidth;
|
|
|
|
}
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-06-27 18:01:35 +00:00
|
|
|
// Set the preview background state
|
|
|
|
previewText.getBackground().setState(
|
|
|
|
key.mPopupCharacters != null ? LONG_PRESSABLE_STATE_SET : EMPTY_STATE_SET);
|
2011-06-28 07:32:39 +00:00
|
|
|
previewText.setTextColor(params.mPreviewTextColor);
|
2011-06-24 05:19:59 +00:00
|
|
|
FrameLayoutCompatUtils.placeViewAt(
|
|
|
|
previewText, previewX, previewY, previewWidth, previewHeight);
|
2011-04-27 05:14:45 +00:00
|
|
|
previewText.setVisibility(VISIBLE);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Requests a redraw of the entire keyboard. Calling {@link #invalidate} is not sufficient
|
|
|
|
* because the keyboard renders the keys to an off-screen buffer and an invalidate() only
|
|
|
|
* draws the cached buffer.
|
2010-08-31 11:21:45 +00:00
|
|
|
* @see #invalidateKey(Key)
|
2010-08-20 05:35:02 +00:00
|
|
|
*/
|
|
|
|
public void invalidateAllKeys() {
|
|
|
|
mDirtyRect.union(0, 0, getWidth(), getHeight());
|
|
|
|
mDrawPending = true;
|
|
|
|
invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invalidates a key so that it will be redrawn on the next repaint. Use this method if only
|
|
|
|
* one key is changing it's content. Any changes that affect the position or size of the key
|
|
|
|
* may not be honored.
|
2010-12-02 09:46:21 +00:00
|
|
|
* @param key key in the attached {@link Keyboard}.
|
2010-08-20 05:35:02 +00:00
|
|
|
* @see #invalidateAllKeys
|
|
|
|
*/
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2010-08-31 08:01:21 +00:00
|
|
|
public void invalidateKey(Key key) {
|
|
|
|
if (key == null)
|
2010-08-20 05:35:02 +00:00
|
|
|
return;
|
|
|
|
mInvalidatedKey = key;
|
2011-04-27 05:14:45 +00:00
|
|
|
final int x = key.mX + getPaddingLeft();
|
|
|
|
final int y = key.mY + getPaddingTop();
|
|
|
|
mInvalidatedKeyRect.set(x, y, x + key.mWidth, y + key.mHeight);
|
2011-02-01 05:02:22 +00:00
|
|
|
mDirtyRect.union(mInvalidatedKeyRect);
|
2010-08-20 05:35:02 +00:00
|
|
|
onBufferDraw();
|
2011-02-01 05:02:22 +00:00
|
|
|
invalidate(mInvalidatedKeyRect);
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void closing() {
|
2011-04-13 05:12:24 +00:00
|
|
|
mPreviewText.setVisibility(View.GONE);
|
2011-07-01 04:07:59 +00:00
|
|
|
cancelAllMessages();
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-01-28 07:33:34 +00:00
|
|
|
mDirtyRect.union(0, 0, getWidth(), getHeight());
|
2011-01-14 23:44:25 +00:00
|
|
|
requestLayout();
|
2010-08-20 05:35:02 +00:00
|
|
|
}
|
|
|
|
|
2011-01-17 14:47:52 +00:00
|
|
|
public void purgeKeyboardAndClosing() {
|
|
|
|
mKeyboard = null;
|
|
|
|
closing();
|
|
|
|
}
|
|
|
|
|
2010-08-20 05:35:02 +00:00
|
|
|
@Override
|
|
|
|
public void onDetachedFromWindow() {
|
|
|
|
super.onDetachedFromWindow();
|
|
|
|
closing();
|
|
|
|
}
|
|
|
|
}
|