我正在开发一款应用..当我启动应用时,我的GPS已启用,但在退出时应该禁用GPS。怎么做?请帮忙
答案 0 :(得分:2)
您可以通过给定的代码禁用GPS。它运行良好。
Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE");
intent.putExtra("enabled", false);
sendBroadcast(intent);
答案 1 :(得分:0)
我认为不可能。
尝试这样的事情:
LocationManager.removeUpdates(LocationListener);
我希望这是你正在寻找的东西。
答案 2 :(得分:0)
您无需禁用任何内容,只需使用位置管理器删除gpsupdate即可。 这是
的代码(的LocationManager)getSystemService(Context.LOCATION_SERVICE).removeUpdates(mLocListener);