Back to project page fieldreporter.
The source code is released under:
Apache License
If you think the Android project fieldreporter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.donnemartin.android.fieldreporter; // w ww . jav a 2s .c o m import android.content.Context; import android.location.Location; public class TrackingLocationReceiver extends LocationReceiver { @Override protected void onLocationReceived(Context c, Location loc) { ReportManager.get(c).insertLocation(loc); } }