am 0b971df9: am 93e2d777: Merge "Fix froyo-ub-LatinImeGoogle compatibility" into honeycomb
* commit '0b971df9e3793a5ae1bc24368b38a105c3015f11': Fix froyo-ub-LatinImeGoogle compatibilitymain
commit
60166feb29
|
@ -71,7 +71,7 @@ public class MiniKeyboardBuilder {
|
|||
for (CharSequence popupSpec : popupCharacters) {
|
||||
final CharSequence label = PopupCharactersParser.getLabel(popupSpec.toString());
|
||||
// If the label is single letter, minKeyWidth is enough to hold the label.
|
||||
if (label.length() > 1) {
|
||||
if (label != null && label.length() > 1) {
|
||||
if (paint == null) {
|
||||
paint = new Paint();
|
||||
paint.setAntiAlias(true);
|
||||
|
|
|
@ -182,7 +182,7 @@ public class Settings extends PreferenceActivity
|
|||
if (pref == mInputLanguageSelection) {
|
||||
final String action;
|
||||
if (android.os.Build.VERSION.SDK_INT
|
||||
>= /* android.os.Build.VERSION_CODES.HONEYCOMB */ 10) {
|
||||
>= /* android.os.Build.VERSION_CODES.HONEYCOMB */ 11) {
|
||||
action = "android.settings.INPUT_METHOD_AND_SUBTYPE_ENABLER";
|
||||
} else {
|
||||
action = "com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION";
|
||||
|
|
Loading…
Reference in New Issue