我正在通过网络获取纬度和经度
它给了我纬度和经度,但是如果我NETWORK LOCATION PROVIDER
的未检查怎么办
它永远不会为我提供当前位置的纬度和经度。
我想要的是,如何NETWORK LOCATION PROVIDER
在不知道用户打开它的情况下启用手机,
我怎样才能做到这一点?
我试过的是:
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivityForResult(intent, 1);
But this will open the page in my phone to check it i want to check AUTOMATICALLY
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.phone", "com.android.phone.Settings");
startActivity(intent);