调用Locations Manager requestSingleUpdate时出错

时间:2012-05-28 12:56:16

标签: android request location

我正在实施“深入到位置”的代码,以下代码的最后一行会产生错误:

if (locationListener != null && (bestTime < minTime || bestAccuracy > minDistance)) { 
  IntentFilter locIntentFilter = new IntentFilter(SINGLE_LOCATION_UPDATE_ACTION);
  context.registerReceiver(singleUpdateReceiver, locIntentFilter);      
  locationManager.requestSingleUpdate(criteria, singleUpatePI);

似乎没有为LocationManager定义requestSingleUpdate,尽管它在示例代码中,我看到有人说他们已经实现了这段代码。

1 个答案:

答案 0 :(得分:0)

我在这里找到了一个类似问题的答案: https://stackoverflow.com/a/5469101/1285338

此API存在于API级别9和