Here you go:
ComponentName componentToLaunch = new ComponentName("com.android.settings", "com.android.settings.Settings$SpellCheckersSettingsActivity"); Intent intent = new Intent(); intent.addCategory(Intent.CATEGORY_LAUNCHER); intent.setComponent(componentToLaunch); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); try { this.startActivity(intent); } catch (ActivityNotFoundException e) {
You can find out the names of other Acts by running Activity and find the Intent used in Logcat. The output for me was:
I/ActivityManager( 589): START u0 {act=android.intent.action.MAIN cmp=com.android.settings/.Settings$SpellCheckersSettingsActivity} from pid 13084
Force source share