Hi guys,
How to detect GPS signal strength such as low (weak) or high ?
is there an API class ?
Thanks in advance.
Hi guys,
How to detect GPS signal strength such as low (weak) or high ?
is there an API class ?
Thanks in advance.
GpsStatus. getSatellites();
//for each of those do
GpsSatelite. getSnr();
//that ruturns the signal to noise ratio
//use with
GpsStatus.Listener
Heres the api docs: Location manager - GpsStatus - GpsSatelite