am 96680f28: Use integer value instead of symbolic name for os version

* commit '96680f28e8e647307f0222500a59eb31ff463236':
  Use integer value instead of symbolic name for os version
main
Tadashi G. Takaoka 2011-01-13 21:52:27 -08:00 committed by Android Git Automerger
commit bb4fc71bb9
1 changed files with 2 additions and 1 deletions

View File

@ -181,7 +181,8 @@ public class Settings extends PreferenceActivity
public boolean onPreferenceClick(Preference pref) {
if (pref == mInputLanguageSelection) {
final String action;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB) {
if (android.os.Build.VERSION.SDK_INT
>= /* android.os.Build.VERSION_CODES.HONEYCOMB */ 10) {
action = "android.settings.INPUT_METHOD_AND_SUBTYPE_ENABLER";
} else {
action = "com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION";