Merge branch 'split_interval_screen' of ssh://github.com/osmandapp/Osmand into split_interval_screen
This commit is contained in:
commit
d3c2b5c9fb
3 changed files with 4 additions and 8 deletions
|
@ -309,7 +309,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="3dp"
|
android:layout_marginTop="3dp"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:text="@string/range"
|
android:text="@string/range_min_max"
|
||||||
android:textColor="?android:attr/textColorSecondary"
|
android:textColor="?android:attr/textColorSecondary"
|
||||||
android:textSize="@dimen/default_split_segments_sub" />
|
android:textSize="@dimen/default_split_segments_sub" />
|
||||||
|
|
||||||
|
|
|
@ -275,7 +275,7 @@ public class GPXUtilities {
|
||||||
public double minElevation = 99999;
|
public double minElevation = 99999;
|
||||||
public double maxElevation = -100;
|
public double maxElevation = -100;
|
||||||
|
|
||||||
public float minSpeed = 0;
|
public float minSpeed = Float.MAX_VALUE;
|
||||||
public float maxSpeed = 0;
|
public float maxSpeed = 0;
|
||||||
public float avgSpeed;
|
public float avgSpeed;
|
||||||
|
|
||||||
|
@ -521,11 +521,7 @@ public class GPXUtilities {
|
||||||
|
|
||||||
if (speed > 0) {
|
if (speed > 0) {
|
||||||
totalSpeedSum += speed;
|
totalSpeedSum += speed;
|
||||||
if (minSpeed == 0) {
|
minSpeed = Math.min(speed, minSpeed);
|
||||||
minSpeed = speed;
|
|
||||||
} else {
|
|
||||||
minSpeed = Math.min(speed, minSpeed);
|
|
||||||
}
|
|
||||||
maxSpeed = Math.max(speed, maxSpeed);
|
maxSpeed = Math.max(speed, maxSpeed);
|
||||||
speedCount++;
|
speedCount++;
|
||||||
}
|
}
|
||||||
|
|
|
@ -544,7 +544,7 @@ public class SplitSegmentFragment extends OsmAndListFragment {
|
||||||
|
|
||||||
String maxSpeed = OsmAndFormatter.getFormattedSpeed(analysis.maxSpeed, app);
|
String maxSpeed = OsmAndFormatter.getFormattedSpeed(analysis.maxSpeed, app);
|
||||||
String minSpeed = OsmAndFormatter.getFormattedSpeed(analysis.minSpeed, app);
|
String minSpeed = OsmAndFormatter.getFormattedSpeed(analysis.minSpeed, app);
|
||||||
String max_min_speed = maxSpeed.substring(0, maxSpeed.indexOf(" ")).concat("/").concat(minSpeed.substring(0, minSpeed.indexOf(" ")));
|
String max_min_speed = maxSpeed.substring(0, maxSpeed.indexOf(" ")).concat("/").concat(minSpeed);
|
||||||
if (minSpeed.substring(0, minSpeed.indexOf(" ")).equals("0") || minSpeed.substring(0, minSpeed.indexOf(" ")).equals("0.0")) {
|
if (minSpeed.substring(0, minSpeed.indexOf(" ")).equals("0") || minSpeed.substring(0, minSpeed.indexOf(" ")).equals("0.0")) {
|
||||||
(convertView.findViewById(R.id.max_speed_value))
|
(convertView.findViewById(R.id.max_speed_value))
|
||||||
.setVisibility(View.VISIBLE);
|
.setVisibility(View.VISIBLE);
|
||||||
|
|
Loading…
Reference in a new issue