获取位置没有谷歌播放服务-android

use*_*173 23 android google-maps geolocation

我知道有些手机没有预装谷歌播放服务.我想问一下,如果没有Google Play服务可以获得位置,只需使用LocationManager.不是LocationClient.

Onu*_* A. 16

你可以使用LocationManager

LocationManager locationManager = (LocationManager) getApplicationContext().getSystemService(LOCATION_SERVICE);

Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
Run Code Online (Sandbox Code Playgroud)