am 0b971df9: am 93e2d777: Merge "Fix froyo-ub-LatinImeGoogle compatibility" into honeycomb

* commit '0b971df9e3793a5ae1bc24368b38a105c3015f11':
  Fix froyo-ub-LatinImeGoogle compatibility
main
Tadashi G. Takaoka 2011-01-14 07:03:02 -08:00 committed by Android Git Automerger
commit 60166feb29
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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";