Skip to content
Snippets Groups Projects
Commit eaa091da authored by Ken Wakasa's avatar Ken Wakasa Committed by Android (Google) Code Review
Browse files

Merge "Fix subtype settings activity string"

parents 7e85cebf 435bd31d
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,9 @@ public class Settings extends PreferenceActivity ...@@ -225,7 +225,9 @@ public class Settings extends PreferenceActivity
final String action; final String action;
if (android.os.Build.VERSION.SDK_INT if (android.os.Build.VERSION.SDK_INT
>= /* android.os.Build.VERSION_CODES.HONEYCOMB */ 11) { >= /* android.os.Build.VERSION_CODES.HONEYCOMB */ 11) {
action = "android.settings.INPUT_METHOD_AND_SUBTYPE_ENABLER"; // Refer to android.provider.Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS
// TODO: Can this be a constant instead of literal String constant?
action = "android.settings.INPUT_METHOD_SUBTYPE_SETTINGS";
} else { } else {
action = "com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"; action = "com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment