LocationManager和LOCATION_SERVICE

时间:2013-07-17 19:33:40

标签: android

这两行等价吗? 它们在我的应用程序中表现不同。

locationManager = (LocationManager) context.getSystemService(LOCATION_SERVICE);
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

由于

1 个答案:

答案 0 :(得分:2)

是的,它们是相同的,第一个来自ActivityService之外的任何东西,而另一个来自其中一个。