<intent android:action="android.provider.Settings.ACTION_INPUT_METHOD_SETTINGS"/>
does not work anymore. I found an answer
here.
Intent intent = new Intent();
intent.setAction(Intent.ACTION_MAIN);
ComponentName com = new ComponentName("com.android.settings", "com.android.settings.LanguageSettings");
intent.setComponent(com); startActivity(intent);
But the problem is that I need to find the equivalent code to launch this intent through XML. Is this possible?