I am creating an app to search for all avaialable mobile networks. The code i use is to direct to mobile networks screen:
intent=new Intent(android.provider.Settings.ACTION_SETTINGS);
intent.setClassName("com.android.phone", "com.android.phone.NetworkSetting");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
I have to select "Search Networks" Manually to search for all available networks. Is there a way to do that programatically. I cant find a solution to INetworkQueryService so if you have a code ready to this please tell!