I am opening the Flight Mode setting page with below code.
startActivity(new Intent(Settings.ACTION_AIRPLANE_MODE_SETTINGS));
It is working fine on the most of the devices. But on Samsung model = GT-19300 it throws an exception:
ActivityNot Found Exception.No Activity found to handle intent
{android.Settings.ACTION_AIRPLANE_MODE_SETTINGS}
What is the Intent string to open Flight Mode settings on Samsung devices?
I've tried the @Rizwan Rasheed's answers, and the else block opened an activiy which was not the Airplane Mode Activity. I've done this in a Samsung J1.
In accordance with the documentation:
As an option, in catch block I suggest you open the device settings or some alert dialog that opens the same activity on click event.
To open device settings, do this:
try this code hope it will work.