0

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

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 ,尽管它在示例代码中,我看到人们说他们已经实现了这个代码。

4

1 回答 1

0

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

此 API 从 API 级别 9 及更高级别开始存在

于 2012-05-28T13:31:14.133 回答