我是否爲網絡位置和gps位置註冊單個locationlistener對象,還是爲每個位置創建單獨的一個?Android位置服務:我可以爲GPS和網絡位置使用單個位置監聽器嗎?
1
A
回答
2
您可以對兩者使用相同的偵聽器。
當您獲得onLocationChanged()
或onStatusChanged()
回調時,您可以檢查傳入參數(位置或提供商)以確定回叫的來源(即:網絡或GPS)。
1
使用下面的類來檢索位置。它會選擇最佳的供應商和返回的緯度和經度:
package com.test.location;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnCancelListener;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.Toast;
public class LocationPicker implements LocationListener, OnCancelListener{
private Context ctx;
private LocationManager locationMgr;
private boolean stopFlag;
private ProgressDialog dialog;
public LocationPicker(Context ctx) {
this.ctx = ctx;
}
public void retrieveLocation() {
String locCtx = Context.LOCATION_SERVICE;
locationMgr = (LocationManager) ctx.getSystemService(locCtx);
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
String provider = locationMgr.getBestProvider(criteria, true);
locationMgr.requestLocationUpdates(provider, 0, 0, this);
Runnable showWaitDialog = new Runnable() {
@Override
public void run() {
while (!stopFlag) {
// Wait for first GPS Fix (do nothing until loc != null)
}
// After receiving first GPS Fix dismiss the Progress Dialog
dialog.dismiss();
}
};
dialog = ProgressDialog.show(ctx, "Please wait...", "Retrieving GPS data...", true);
dialog.setCancelable(true);
dialog.setOnCancelListener(this);
Thread t = new Thread(showWaitDialog);
t.start();
}
@Override
public void onLocationChanged(Location location) {
if (location != null) {
double latitude = location.getLatitude();
double longitude = location.getLongitude();
stopFlag = true;
Toast.makeText(ctx, "Latitude : " + latitude + " Longitude : " + longitude , Toast.LENGTH_LONG).show();
}
locationMgr.removeUpdates(this);
}
@Override
public void onProviderDisabled(String provider) {
// Toast.makeText(ctx, "GPS Disabled", Toast.LENGTH_LONG).show();
//
// Intent intent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
// ctx.startActivity(intent);
}
@Override
public void onProviderEnabled(String provider) {
// Toast.makeText(ctx, "GPS Enabled", Toast.LENGTH_SHORT).show();
//
// ctx.startActivity(new Intent(ctx, LocationPickerActivity.class));
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onCancel(DialogInterface dialog) {
stopFlag = true;
locationMgr.removeUpdates(this);
}
}
的創造上面的類後,只需調用下面的方法,它會返回經緯度:::
LocationPicker lp = new LocationPicker(this);
lp.retrieveLocation();
注意:自定義位置偵聽器也包含進度對話框。
相關問題
- 1. Android GPS位置監聽器
- 2. Android位置:PendingIntent與位置監聽器
- 3. Android Intent服務的位置監聽器
- 4. 谷歌位置服務更新忽略位置監聽器(android)
- 5. Android的位置監聽器
- 6. 我得到的GPS /網絡位置android刪除位置的值
- 7. 位置監聽器
- 8. Gps位置監聽器停止
- 9. 監視android GPS位置
- 10. 使用服務獲取GPS位置,android?
- 11. 位置網絡服務
- 12. Android的GPS和位置服務幫助
- 13. 使用gps位置監聽器和速度
- 14. 通過網絡位置顯示GPS Android
- 15. Android GPS。位置監聽器並不想獲得一個修復:(
- 16. Android GPS位置
- 17. 位置監聽器Corona sdk
- 18. 刪除位置監聽器
- 19. 網絡位置與GPS位置以用於Android中的跟蹤目的地
- 20. 我可以使用Corona SDK獲取Iphone/Android GPS位置嗎?
- 21. 即使我設置了位置權限,也無法獲得gps /網絡位置
- 22. 如何使用位置監聽器?
- 23. <cfdirectory>位置可以使用網站相關位置嗎?
- 24. Android的位置監聽器不工作
- 25. 從位置監聽器調用和獲取oncreate方法的位置android
- 26. 使用位置管理器和位置監聽器顯示座標
- 27. Android仿真器 - GPS位置
- 28. 帶有位置監聽器回調的Android服務
- 29. Xamarin/Android - 位置監聽器服務呼叫錯誤
- 30. 在android中的位置監聽器的背景服務
甜美,謝謝:) –