How to start activity Language and input

android, set, settings

Solution

try this:

Intent intent = new Intent();
intent.setComponent( new ComponentName("com.android.settings","com.android.settings.Settings$InputMethodAndLanguageSettingsActivity" ));
startActivity(intent);

Problem

I want to open (start) activity named: "Language and input", where the user can change the device language. ``` startActivity(new Intent(Locale....)); ``` It's in the Locale or... settings? Where is it?

Original source

Related problems