I have to open language selection page in android from application. i am using below code.
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.settings","com.android.settings.LanguageSettings");
startActivity(intent);
But this is calling "language and input page" again i have to click on language tab to go inside and select language, so is there any way to open that language page directly.