gpt4 book ai didi

android - 在 Android 中使用 GPS 获取当前位置

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:45:52 26 4
gpt4 key购买 nike

我现在在一个项目中工作,我想使用 gps 获取用户的当前位置。我已经阅读了很多教程并尝试编写代码。该代码在模拟器中运行良好。每次我使用 DDMS 发送纬度和经度时,模拟器都会检测到。主要问题是它不适用于真实设备。虽然,我试过的设备可以访问互联网并且 GPS 是打开的。我已将所需的权限添加到 list 文件。

public class MainActivity extends Activity {

TextView lat;
TextView lon;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lat=(TextView)findViewById(R.id.textView2);
lon=(TextView)findViewById(R.id.textView4);
LocationManager lm=(LocationManager)getSystemService(Context.LOCATION_SERVICE);
LocationListener ll=new myLocationListener();
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER,0,0, ll);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
class myLocationListener implements LocationListener{

@Override
public void onLocationChanged(Location location) {
// TODO Auto-generated method stub
if(location!=null){
double pLat=location.getLatitude();
double pLong=location.getLongitude();
lat.setText(Double.toString(pLat));
lon.setText(Double.toString(pLong));
}
}

@Override
public void onProviderDisabled(String provider) {
// TODO Auto-generated method stub

}

@Override
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub

}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
// TODO Auto-generated method stub

}

}
}

list 文件中的权限

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>

我需要帮助

最佳答案

像这样尝试某事。你应该记住,本地化的东西需要启动 GPS,这需要一些时间。在那堂课上,我延迟了一些本地化内容以获得结果,因为 GPS 组件应该有时间启动。

public class MyBestLocation {
LocationListener locationListenerGps = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
locationResult.gotLocation(location);
lm.removeUpdates(this);
lm.removeUpdates(locationListenerNetwork);
}

@Override
public void onProviderDisabled(String provider) {
}

@Override
public void onProviderEnabled(String provider) {
}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
};
LocationListener locationListenerNetwork = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
locationResult.gotLocation(location);
lm.removeUpdates(this);
lm.removeUpdates(locationListenerGps);
}

@Override
public void onProviderDisabled(String provider) {
}

@Override
public void onProviderEnabled(String provider) {
}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
};
//delay in seconds
private int DELAY = 1;
private Timer timer1;
private LocationManager lm;
private LocationResult locationResult;
private boolean gps_enabled = false;
private boolean network_enabled = false;
private ScheduledExecutorService scheduler;
private ScheduledFuture scheduledFuture;

public boolean getLocation(Context context, LocationResult result) {
//
locationResult = result;
if (lm == null)
lm = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);

// checking weather providers are aviliable
try {
gps_enabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
} catch (Exception ex) {
}
try {
network_enabled = lm
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
} catch (Exception ex) {
}

//
if (!gps_enabled && !network_enabled)
return false;

if (gps_enabled)
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
locationListenerGps);
if (network_enabled)
lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0,
locationListenerNetwork);
//----------------------
// async executor method upgrade
timer1 = new Timer();
timer1.schedule(new GetLastLocation(), DELAY*2000);
// ----------------

//
/* scheduler = Executors.newSingleThreadScheduledExecutor();
scheduler.schedule(new GetLastLocation(), DELAY, TimeUnit.SECONDS);*/
return true;
}

// Timer for the latest location

public static abstract class LocationResult {
public abstract void gotLocation(Location location);
}

/**
*
*
* @author rafik991
*/
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);
}

}

}

关于android - 在 Android 中使用 GPS 获取当前位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22741632/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com