The only possible solution is :
Intent intent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
//Is there any value for entering hotsopt?
mContext.startActivity(intent);
Have you tried:
startActivity(new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS));
Please note (ACTION_WIRELESS_SETTINGS
docs):
Activity Action: Show settings to allow configuration of wireless controls such as Wi-Fi, Bluetooth and Mobile networks.
In some cases, a matching Activity may not exist, so ensure you safeguard against this.