android.location.GpsStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
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 getSatellites() { throw new RuntimeException("Stub!"); }
public int getMaxSatellites() { throw new RuntimeException("Stub!"); }
public static final int GPS_EVENT_STARTED = 1;
public static final int GPS_EVENT_STOPPED = 2;
public static final int GPS_EVENT_FIRST_FIX = 3;
public static final int GPS_EVENT_SATELLITE_STATUS = 4;
}