All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.location.GpsStatus Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

The newest version!
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy