Android Open Source - LocationService Utils






From Project

Back to project page LocationService.

License

The source code is released under:

Apache License

If you think the Android project LocationService listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.manuelpeinado.fusedlocationprovidertest;
/*from  w w w. j a v  a  2  s.c  o  m*/
import android.location.Location;

/**
 * Created by manuel on 21/07/13.
 */
public class Utils {
    public static String format(Location location) {
        return String.format("%s,%s", location.getLatitude(), location.getLongitude());
    }
}




Java Source Code List

com.manuelpeinado.fusedlocationprovidertest.Utils.java
com.manuelpeinado.locationservice.BootCompletedReceiver.java
com.manuelpeinado.locationservice.LocationService.java
com.manuelpeinado.locationservice.Utils.java