FileDocCategorySizeDatePackage
GpsStatus.javaAPI DocAndroid 5.1 API779Sat Mar 14 14:09:40 GMT 2015android.location

GpsStatus.java

package android.location;
public final class GpsStatus
{
public static interface Listener
{
public abstract  void onGpsStatusChanged(int event);
}
public static interface NmeaListener
{
public abstract  void onNmeaReceived(long timestamp, java.lang.String nmea);
}
GpsStatus() { throw new RuntimeException("Stub!"); }
public  int getTimeToFirstFix() { throw new RuntimeException("Stub!"); }
public  java.lang.Iterable<android.location.GpsSatellite> getSatellites() { throw new RuntimeException("Stub!"); }
public  int getMaxSatellites() { throw new RuntimeException("Stub!"); }
public static final int GPS_EVENT_FIRST_FIX = 3;
public static final int GPS_EVENT_SATELLITE_STATUS = 4;
public static final int GPS_EVENT_STARTED = 1;
public static final int GPS_EVENT_STOPPED = 2;
}