Use integer value instead of symbolic name for os version

Change-Id: I1574915ededf5d47d245a3f09692ebbbfe37e4c6
main
Tadashi G. Takaoka 2011-01-14 14:46:55 +09:00
parent 41f7fb51b0
commit 96680f28e8
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";