am bb4075bc: Merge "Fix possible NPE in MainKeyboardView"
* commit 'bb4075bc9378b791f5b73bde2a448acc50606947': Fix possible NPE in MainKeyboardViewmain
commit
2daf1b910a
|
@ -869,13 +869,16 @@ public final class MainKeyboardView extends KeyboardView implements DrawingProxy
|
||||||
}
|
}
|
||||||
|
|
||||||
private void drawLanguageOnSpacebar(final Key key, final Canvas canvas, final Paint paint) {
|
private void drawLanguageOnSpacebar(final Key key, final Canvas canvas, final Paint paint) {
|
||||||
|
final Keyboard keyboard = getKeyboard();
|
||||||
|
if (keyboard == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
final int width = key.getWidth();
|
final int width = key.getWidth();
|
||||||
final int height = key.getHeight();
|
final int height = key.getHeight();
|
||||||
paint.setTextAlign(Align.CENTER);
|
paint.setTextAlign(Align.CENTER);
|
||||||
paint.setTypeface(Typeface.DEFAULT);
|
paint.setTypeface(Typeface.DEFAULT);
|
||||||
paint.setTextSize(mLanguageOnSpacebarTextSize);
|
paint.setTextSize(mLanguageOnSpacebarTextSize);
|
||||||
final RichInputMethodSubtype subtype = getKeyboard().mId.mSubtype;
|
final String language = layoutLanguageOnSpacebar(paint, keyboard.mId.mSubtype, width);
|
||||||
final String language = layoutLanguageOnSpacebar(paint, subtype, width);
|
|
||||||
// Draw language text with shadow
|
// Draw language text with shadow
|
||||||
final float descent = paint.descent();
|
final float descent = paint.descent();
|
||||||
final float textHeight = -paint.ascent() + descent;
|
final float textHeight = -paint.ascent() + descent;
|
||||||
|
|
Loading…
Reference in New Issue