Merge "Remove spacebar preview and arrows"
commit
87a32135ab
|
@ -0,0 +1,30 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/*
|
||||||
|
**
|
||||||
|
** Copyright 2011, The Android Open Source Project
|
||||||
|
**
|
||||||
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
** you may not use this file except in compliance with the License.
|
||||||
|
** You may obtain a copy of the License at
|
||||||
|
**
|
||||||
|
** http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
**
|
||||||
|
** Unless required by applicable law or agreed to in writing, software
|
||||||
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
** See the License for the specific language governing permissions and
|
||||||
|
** limitations under the License.
|
||||||
|
*/
|
||||||
|
-->
|
||||||
|
|
||||||
|
<shape
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle"
|
||||||
|
>
|
||||||
|
<solid
|
||||||
|
android:color="@android:color/transparent" />
|
||||||
|
<size
|
||||||
|
android:width="50dp"
|
||||||
|
android:height="40dp" />
|
||||||
|
</shape>
|
|
@ -60,7 +60,7 @@
|
||||||
<item name="iconNum0Key">@drawable/sym_keyboard_num0</item>
|
<item name="iconNum0Key">@drawable/sym_keyboard_num0</item>
|
||||||
<!-- <item name="iconShiftedShiftKey">@drawable/sym_keyboard_shift_locked_holo</item> -->
|
<!-- <item name="iconShiftedShiftKey">@drawable/sym_keyboard_shift_locked_holo</item> -->
|
||||||
<item name="iconShiftedShiftKey">@drawable/sym_keyboard_shift_locked</item>
|
<item name="iconShiftedShiftKey">@drawable/sym_keyboard_shift_locked</item>
|
||||||
<item name="iconPreviewSpaceKey">@drawable/sym_keyboard_space_holo</item>
|
<item name="iconPreviewSpaceKey">@drawable/transparent</item>
|
||||||
<!-- <item name="iconPreviewTabKey">@drawable/sym_keyboard_tab_holo</item> -->
|
<!-- <item name="iconPreviewTabKey">@drawable/sym_keyboard_tab_holo</item> -->
|
||||||
<item name="iconPreviewTabKey">@drawable/sym_keyboard_feedback_tab</item>
|
<item name="iconPreviewTabKey">@drawable/sym_keyboard_feedback_tab</item>
|
||||||
<!-- <item name="iconPreviewSettingsKey">@drawable/sym_keyboard_settings_holo</item> -->
|
<!-- <item name="iconPreviewSettingsKey">@drawable/sym_keyboard_settings_holo</item> -->
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
<item name="disabledShortcutIcon">@drawable/sym_keyboard_voice_off_holo</item>
|
<item name="disabledShortcutIcon">@drawable/sym_keyboard_voice_off_holo</item>
|
||||||
<item name="spacebarArrowLeftIcon">@drawable/sym_keyboard_language_arrows_left</item>
|
<item name="spacebarArrowLeftIcon">@drawable/sym_keyboard_language_arrows_left</item>
|
||||||
<item name="spacebarArrowRightIcon">@drawable/sym_keyboard_language_arrows_right</item>
|
<item name="spacebarArrowRightIcon">@drawable/sym_keyboard_language_arrows_right</item>
|
||||||
<item name="spacebarArrowPreviewLeftIcon">@drawable/sym_keyboard_feedback_language_arrows_left</item>
|
<!-- <item name="spacebarArrowPreviewLeftIcon">@drawable/sym_keyboard_feedback_language_arrows_left</item> -->
|
||||||
<item name="spacebarArrowPreviewRightIcon">@drawable/sym_keyboard_feedback_language_arrows_right</item>
|
<!-- <item name="spacebarArrowPreviewRightIcon">@drawable/sym_keyboard_feedback_language_arrows_right</item> -->
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -130,6 +130,7 @@ public class KeyboardView extends View implements PointerTracker.UIProxy {
|
||||||
// Key preview
|
// Key preview
|
||||||
private boolean mInForeground;
|
private boolean mInForeground;
|
||||||
private TextView mPreviewText;
|
private TextView mPreviewText;
|
||||||
|
private Drawable mPreviewBackground;
|
||||||
private float mPreviewTextRatio;
|
private float mPreviewTextRatio;
|
||||||
private int mPreviewTextSize;
|
private int mPreviewTextSize;
|
||||||
private boolean mShowKeyPreviewPopup = true;
|
private boolean mShowKeyPreviewPopup = true;
|
||||||
|
@ -357,6 +358,7 @@ public class KeyboardView extends View implements PointerTracker.UIProxy {
|
||||||
|
|
||||||
if (previewLayout != 0) {
|
if (previewLayout != 0) {
|
||||||
mPreviewText = (TextView) LayoutInflater.from(context).inflate(previewLayout, null);
|
mPreviewText = (TextView) LayoutInflater.from(context).inflate(previewLayout, null);
|
||||||
|
mPreviewBackground = mPreviewText.getBackground();
|
||||||
mPreviewTextRatio = getRatio(res, R.fraction.key_preview_text_ratio);
|
mPreviewTextRatio = getRatio(res, R.fraction.key_preview_text_ratio);
|
||||||
} else {
|
} else {
|
||||||
mShowKeyPreviewPopup = false;
|
mShowKeyPreviewPopup = false;
|
||||||
|
@ -982,6 +984,11 @@ public class KeyboardView extends View implements PointerTracker.UIProxy {
|
||||||
previewIcon != null ? previewIcon : key.getIcon());
|
previewIcon != null ? previewIcon : key.getIcon());
|
||||||
previewText.setText(null);
|
previewText.setText(null);
|
||||||
}
|
}
|
||||||
|
if (key.mCode == Keyboard.CODE_SPACE) {
|
||||||
|
previewText.setBackgroundColor(Color.TRANSPARENT);
|
||||||
|
} else {
|
||||||
|
previewText.setBackgroundDrawable(mPreviewBackground);
|
||||||
|
}
|
||||||
// Set the preview background state
|
// Set the preview background state
|
||||||
previewText.getBackground().setState(
|
previewText.getBackground().setState(
|
||||||
key.mPopupCharacters != null ? LONG_PRESSABLE_STATE_SET : EMPTY_STATE_SET);
|
key.mPopupCharacters != null ? LONG_PRESSABLE_STATE_SET : EMPTY_STATE_SET);
|
||||||
|
|
|
@ -58,7 +58,7 @@ public class SlidingLocaleDrawable extends Drawable {
|
||||||
|
|
||||||
public SlidingLocaleDrawable(Context context, Drawable background, int width, int height) {
|
public SlidingLocaleDrawable(Context context, Drawable background, int width, int height) {
|
||||||
mBackground = background;
|
mBackground = background;
|
||||||
Keyboard.setDefaultBounds(mBackground);
|
Keyboard.setDefaultBounds(background);
|
||||||
mWidth = width;
|
mWidth = width;
|
||||||
mHeight = height;
|
mHeight = height;
|
||||||
final TextPaint textPaint = new TextPaint();
|
final TextPaint textPaint = new TextPaint();
|
||||||
|
@ -68,7 +68,7 @@ public class SlidingLocaleDrawable extends Drawable {
|
||||||
textPaint.setTextAlign(Align.CENTER);
|
textPaint.setTextAlign(Align.CENTER);
|
||||||
textPaint.setAntiAlias(true);
|
textPaint.setAntiAlias(true);
|
||||||
mTextPaint = textPaint;
|
mTextPaint = textPaint;
|
||||||
mMiddleX = (mWidth - mBackground.getIntrinsicWidth()) / 2;
|
mMiddleX = (background != null) ? (mWidth - mBackground.getIntrinsicWidth()) / 2 : 0;
|
||||||
|
|
||||||
final TypedArray a = context.obtainStyledAttributes(
|
final TypedArray a = context.obtainStyledAttributes(
|
||||||
null, R.styleable.LatinKeyboard, R.attr.latinKeyboardStyle, R.style.LatinKeyboard);
|
null, R.styleable.LatinKeyboard, R.attr.latinKeyboardStyle, R.style.LatinKeyboard);
|
||||||
|
@ -119,11 +119,13 @@ public class SlidingLocaleDrawable extends Drawable {
|
||||||
canvas.drawText(mNextLanguage, diff - width / 2, baseline, paint);
|
canvas.drawText(mNextLanguage, diff - width / 2, baseline, paint);
|
||||||
canvas.drawText(mPrevLanguage, diff + width + width / 2, baseline, paint);
|
canvas.drawText(mPrevLanguage, diff + width + width / 2, baseline, paint);
|
||||||
|
|
||||||
Keyboard.setDefaultBounds(lArrow);
|
if (lArrow != null && rArrow != null) {
|
||||||
rArrow.setBounds(width - rArrow.getIntrinsicWidth(), 0, width,
|
Keyboard.setDefaultBounds(lArrow);
|
||||||
rArrow.getIntrinsicHeight());
|
rArrow.setBounds(width - rArrow.getIntrinsicWidth(), 0, width,
|
||||||
lArrow.draw(canvas);
|
rArrow.getIntrinsicHeight());
|
||||||
rArrow.draw(canvas);
|
lArrow.draw(canvas);
|
||||||
|
rArrow.draw(canvas);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (mBackground != null) {
|
if (mBackground != null) {
|
||||||
canvas.translate(mMiddleX, 0);
|
canvas.translate(mMiddleX, 0);
|
||||||
|
|
Loading…
Reference in New Issue