我想编写一个在后台运行的应用程序,并在不可用时提供更准确的GPS位置,这样可能吗?
据我所知,GPS位置可以在开发者模式下覆盖,但我希望应用程序适用于所有人,而不仅仅是知道如何激活开发者模式以及如何处理它的人。
答案 0 :(得分:0)
LocationManager alm=(LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
if(alm.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Toast.makeText(this, "GPS is available", Toast.LENGTH_SHORT).show();
}else{
Toast.makeText(this, "please open the GPS ", Toast.LENGTH_SHORT).show();
Intent intent=new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivityForResult(intent, 0);
}