我正在使用以下代码进行GPS开/关.
//Enable GPS Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE"); intent.putExtra("enabled",true); context.sendBroadcast(intent); //Disable GPS Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE"); intent.putExtra("enabled",false); context.sendBroadcast(intent);
在程序上我需要在Android设备上开/关GPS.
我正在使用上面的代码.但它不适用于所有设备.
请帮帮我.提前致谢.