0
我想從一個線程獲取我的位置。 我代碼:如何在線程中調用requestLocationUpdates?
LocationManager locationManager;
GeoPoint p;
locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
Criteria cri = new Criteria();
String tower = locationManager.getBestProvider(cri, false);
Location location = locationManager.getLastKnownLocation(tower);
但如何調用requestLocationUpdates
更新的位置? 你能幫我嗎?
如果在線程中調用LocationListener locationListener = new LocationListener(),則顯示excel。 – mum
你會得到什麼例外? Post logcat –
java.lang.RuntimeException:無法在未調用Looper.prepare()的線程內創建處理程序() – mum