5088a4c09221e0f1bd3ab97fb25ae6a4bc6e96ba.svn-base 512 B

1234567891011121314
  1. package eVVM.apk.helper.GPS;
  2. public class GPSProviderStatus {
  3. //用户手动开启GPS
  4. public static final int GPS_ENABLED = 0;
  5. //用户手动关闭GPS
  6. public static final int GPS_DISABLED = 1;
  7. //服务已停止,并且在短时间内不会改变
  8. public static final int GPS_OUT_OF_SERVICE = 2;
  9. //服务暂时停止,并且在短时间内会恢复
  10. public static final int GPS_TEMPORARILY_UNAVAILABLE = 3;
  11. //服务正常有效
  12. public static final int GPS_AVAILABLE = 4;
  13. }