标签: android gps location wifi
我有一个带gps和无线权限的应用程序。我想用gps卫星以及Wi-Fi确定的位置以编程方式设置位置。
我完成了gps卫星:
Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE"); intent.putExtra("enabled", true); sendBroadcast(intent);
我可以通过Wi-Fi确定位置来做类似的事情吗?