Hey if you share some code then its highly appreciated . I do some code but i am not getting proper output and it hangs my application also.
I want to count no. of satellites have been use in my gps fix and i have shown my code below :
@Override
public void onGpsStatusChanged(int event)
{
//Log.e("Gps_Status", "From on gps status changed");
if (event == GpsStatus.GPS_EVENT_SATELLITE_STATUS)
{
GpsStatus status = m_locationManager._myLocationManager.getGpsStatus(null);
Iterable<GpsSatellite> sats = status.getSatellites();
// Check number of satellites in list to determine fix state
NO_OF_SATELLITE=0;
while (sats.iterator().hasNext())
{
GpsSatellite gpsSatellite=(GpsSatellite)sats.iterator().next();
if(gpsSatellite.usedInFix())
{
NO_OF_SATELLITE++;
Log.v("Used In FIx", String.valueOf(NO_OF_SATELLITE));
try
{
File root=new File(PATH, "Log");
if (!root.exists()) {
root.mkdirs();
}
File note=new File(root, "log.txt");
FileWriter writer=new FileWriter(note);
//writer.append("Count: "+ String.valueOf(NO_OF_SATELLITE) + '\n');
BufferedWriter buf=new BufferedWriter(writer);
buf.write("Count: "+ String.valueOf(NO_OF_SATELLITE) + '\n');
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
Toast.makeText(this, "Used In FIx : "+String.valueOf(NO_OF_SATELLITE), Toast.LENGTH_SHORT).show();
}