如何检查位置更新是否由gps提供商或蜂窝网络触发? 代码:
@Override
public void onLocationChanged(final Location location) {
}
答案 0 :(得分:1)
@Override
public void onLocationChanged(final Location location) {
// it Returns the name of the provider that generated this fix.
String locationProvider = location.getProvider()
}