am 3ecb4813: am 17dc363a: Fix an NPE found in KeyboardSwitcher.isAlphabetMode()
Merge commit '3ecb4813f1f77ce9330b08a1a2ab83d26df05e51' * commit '3ecb4813f1f77ce9330b08a1a2ab83d26df05e51': Fix an NPE found in KeyboardSwitcher.isAlphabetMode()main
commit
159bc3cf43
|
@ -335,6 +335,9 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean isAlphabetMode() {
|
boolean isAlphabetMode() {
|
||||||
|
if (mCurrentId == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
int currentMode = mCurrentId.mKeyboardMode;
|
int currentMode = mCurrentId.mKeyboardMode;
|
||||||
for (Integer mode : ALPHABET_MODES) {
|
for (Integer mode : ALPHABET_MODES) {
|
||||||
if (currentMode == mode) {
|
if (currentMode == mode) {
|
||||||
|
|
|
@ -968,7 +968,7 @@ public class LatinIME extends InputMethodService
|
||||||
|
|
||||||
public void updateShiftKeyState(EditorInfo attr) {
|
public void updateShiftKeyState(EditorInfo attr) {
|
||||||
InputConnection ic = getCurrentInputConnection();
|
InputConnection ic = getCurrentInputConnection();
|
||||||
if (attr != null && mKeyboardSwitcher.isAlphabetMode() && ic != null) {
|
if (ic != null && attr != null && mKeyboardSwitcher.isAlphabetMode()) {
|
||||||
mKeyboardSwitcher.setShifted(mCapsLock || getCursorCapsMode(ic, attr) != 0);
|
mKeyboardSwitcher.setShifted(mCapsLock || getCursorCapsMode(ic, attr) != 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue