在我的Android應用程序中,我想同時使用GPS提供商和網絡提供商進行位置更新5秒鐘。首先,我想使用GPS提供商(因爲它提供了準確的結果),並且如果GPS提供商將經度和緯度返回爲0.0和0.0,那麼我想使用網絡提供商,但我不想同時使用提供商同時。有什麼建議麼?如何使用GPS和網絡提供商獲取當前位置Android中的經度和緯度值
4
A
回答
8
package loca.loca;
import java.util.Timer;
import java.util.TimerTask;
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.Toast;
public class LocationActivity extends Activity {
double x,y;
Timer timer;
LocationManager lm;
boolean gps_enabled = false;
boolean network_enabled = false;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
gps_enabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
network_enabled = lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!gps_enabled && !network_enabled) { Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "nothing is enabled", duration);
toast.show();
}
if (gps_enabled)
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
locationListenerGps);
if (network_enabled)
lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0,
locationListenerNetwork);
timer=new Timer();
timer.schedule(new GetLastLocation(), 20000);
}
LocationListener locationListenerGps = new LocationListener() {
public void onLocationChanged(Location location) {
timer.cancel();
x =location.getLatitude();
y = location.getLongitude();
lm.removeUpdates(this);
lm.removeUpdates(locationListenerNetwork);
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "gps enabled "+x + "\n" + y, duration);
toast.show();
}
public void onProviderDisabled(String provider) {
}
public void onProviderEnabled(String provider) {
}
public void onStatusChanged(String provider, int status, Bundle extras) {
}
};
LocationListener locationListenerNetwork = new LocationListener() {
public void onLocationChanged(Location location) {
timer.cancel();
x = location.getLatitude();
y = location.getLongitude();
lm.removeUpdates(this);
lm.removeUpdates(locationListenerGps);
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "network enabled"+x + "\n" + y, duration);
toast.show();
}
public void onProviderDisabled(String provider) {
}
public void onProviderEnabled(String provider) {
}
public void onStatusChanged(String provider, int status, Bundle extras) {
}
};
class GetLastLocation extends TimerTask {
@Override
public void run() {
lm.removeUpdates(locationListenerGps);
lm.removeUpdates(locationListenerNetwork);
Location net_loc=null, gps_loc=null;
if(gps_enabled)
gps_loc=lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if(network_enabled)
net_loc=lm.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
//if there are both values use the latest one
if(gps_loc!=null && net_loc!=null){
if(gps_loc.getTime()>net_loc.getTime())
{x = gps_loc.getLatitude();
y = gps_loc.getLongitude();
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "gps lastknown "+x + "\n" + y, duration);
toast.show();
}
else
{x = net_loc.getLatitude();
y = net_loc.getLongitude();
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "network lastknown "+x + "\n" + y, duration);
toast.show();
}
}
if(gps_loc!=null){
{x = gps_loc.getLatitude();
y = gps_loc.getLongitude();
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "gps lastknown "+x + "\n" + y, duration);
toast.show();
}
}
if(net_loc!=null){
{x = net_loc.getLatitude();
y = net_loc.getLongitude();
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "network lastknown "+x + "\n" + y, duration);
toast.show();
}
}
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, "no last know avilable", duration);
toast.show();
}
}}
0
1
public class MyLocation {
Timer timer1;
LocationManager lm;
LocationResult locationResult;
boolean gps_enabled=false;
boolean network_enabled=false;`
public boolean getLocation(Context context, LocationResult result)
{
//I use LocationResult callback class to pass location value from MyLocation to user code.
locationResult=result;
if(lm==null)
lm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
//exceptions will be thrown if provider is not permitted.
try{gps_enabled=lm.isProviderEnabled(LocationManager.GPS_PROVIDER);}catch(Exception ex){}
try{network_enabled=lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);}catch(Exception ex){}
//don't start listeners if no provider is enabled
if(!gps_enabled && !network_enabled)
return false;
try{
if(gps_enabled)
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListenerGps);
if(network_enabled)
lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListenerNetwork);
timer1=new Timer();
timer1.schedule(new GetLastLocation(), 30000);
}catch(Exception x){
return false;
}
return true;
}
LocationListener locationListenerGps = new LocationListener() {
public void onLocationChanged(Location location) {
timer1.cancel();
locationResult.gotLocation(location);
lm.removeUpdates(this);
lm.removeUpdates(locationListenerNetwork);
}
public void onProviderDisabled(String provider) {}
public void onProviderEnabled(String provider) {}
public void onStatusChanged(String provider, int status, Bundle extras) {}
};
LocationListener locationListenerNetwork = new LocationListener() {
public void onLocationChanged(Location location) {
timer1.cancel();
locationResult.gotLocation(location);
lm.removeUpdates(this);
lm.removeUpdates(locationListenerGps);
}
public void onProviderDisabled(String provider) {}
public void onProviderEnabled(String provider) {}
public void onStatusChanged(String provider, int status, Bundle extras) {}
};
class GetLastLocation extends TimerTask {
@Override
public void run() {
lm.removeUpdates(locationListenerGps);
lm.removeUpdates(locationListenerNetwork);
Location net_loc=null, gps_loc=null;
if(gps_enabled)
gps_loc=lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if(network_enabled)
net_loc=lm.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
//if there are both values use the latest one
if(gps_loc!=null && net_loc!=null){
if(gps_loc.getTime()>net_loc.getTime())
locationResult.gotLocation(gps_loc);
else
locationResult.gotLocation(net_loc);
return;
}
if(gps_loc!=null){
locationResult.gotLocation(gps_loc);
return;
}
if(net_loc!=null){
locationResult.gotLocation(net_loc);
return;
}
locationResult.gotLocation(null);
}
}
public static abstract class LocationResult{
public abstract void gotLocation(Location location);
}
}
然後在活動中使用這些:
final MyLocation myLocation = new MyLocation();
Handler mHandler = new Handler(Looper.getMainLooper());
mHandler.post(new Runnable() {
public void run() {
locationResult = new LocationResult(){
@Override
public void gotLocation(final Location location){
//Got the location!
try{
Methods.savePre(context, ""+location.getLatitude(), "LATITUDE");
Methods.savePre(context, ""+location.getLongitude(), "LONGITUDE");
}catch(Exception x){
x.getMessage();
}
Got_loc= true;
// String geoAddress = "geo:" + location.getLatitude() + ","+ location.getLongitude() + "?z=15";
// Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(geoAddress));
// context.startActivity(intent);
}
};
myLocation.getLocation(context, locationResult);
}
});
while(!Got_loc){
Thread.sleep(150);
}
Loc = Methods.getPref(context, "LATITUDE") + "%%" + Methods.getPref
相關問題
- 1. 使用GPS提供商無法獲取緯度和經度
- 2. 如何獲取Android中當前位置的緯度和經度?
- 3. 通過gps獲取當前位置(經度和緯度)
- 4. Android - 如何獲取當前位置(經度和緯度)?
- 5. 如何通過GPS和/或網絡獲取緯度和經度?
- 6. 未能通過GPS獲取經度和緯度,但通過Android中的網絡提供商獲取?
- 7. 如何獲取黑莓當前位置的經度和緯度?
- 8. 獲取當前位置經度和緯度在android
- 9. 使用gps獲取經緯度的當前位置
- 10. 如何獲取當前位置(經度和緯度)
- 11. 無法使用GPS提供商和網絡提供商獲取更新位置?
- 12. 如何獲得當前位置(經度,緯度),而gps關閉使用FusedLocationApi android
- 13. 當前位置,經度和緯度
- 14. 獲取當前位置的緯度和經度的問題
- 15. 無法獲得Android當前位置的緯度和經度
- 16. 獲取當前位置的經緯度
- 17. 如何從GPS或網絡提供商獲取位置android
- 18. 獲取當前位置的經度和緯度
- 19. 如何使用JAVA獲取我當前位置的經度和緯度
- 20. 如何獲得當前GPS位置的準確經緯度?
- 21. 如何在Android中通過GPS獲取經度和緯度?
- 22. 如何在java中使用緯度和經度獲取位置?
- 23. 通過GPS獲取緯度和經度
- 24. Android:如何使用經度和緯度獲取位置的網址?
- 25. 獲取位置(經度和緯度)
- 26. 使用網絡提供商和GPS提供商的GPS?
- 27. 通過GPS和網絡提供商獲取位置
- 28. 獲取當前位置使用網絡提供商的名稱
- 29. 如何從android的位置服務獲取緯度和經度
- 30. 如何在iOS 4.0/4.2中獲取當前位置的經度和緯度?
你有什麼理由爲兩者使用不同的LocationListener?我可以只使用一個,並檢查'onLocationChange()'它使用哪個提供者? – dee 2013-06-11 15:58:02
應爲每個位置提供程序使用不同的LocationListener對象。否則,將使用最後分配的提供者。 – Alex 2014-03-17 17:19:32