Add number of object drop on the trace.
This commit is contained in:
parent
d9380203d5
commit
5c061cd2be
|
|
@ -540,7 +540,7 @@ public class MainActivity extends AppCompatActivity implements IOrientationConsu
|
|||
private void updateDistance() {
|
||||
String text = null;
|
||||
if (serviceGps.isTraceurActivated()) {
|
||||
text = String.format("Distance: %,dm", ((int) distance));
|
||||
text = String.format("Distance: %,dm\t\t\t\t\t\t\t\tObjects: %d", ((int) distance), serviceGps.getListGeoPointObjects().size());
|
||||
} else if (serviceGps.isDogActivated()) {
|
||||
MyLocation firstLoc = serviceGps.getListGeoPointDog().getFirstLocation();
|
||||
MyLocation lastLoc = serviceGps.getListGeoPointDog().getLastLocation();
|
||||
|
|
|
|||
Loading…
Reference in New Issue