@@ -839,7 +839,11 @@ class LocationFragment : Fragment(), ICurrentChildObserver, View.OnClickListener
refreshWeather(info)
- mTvSteps?.text = info.stepCount
+ if (info.stepCount == "0") {
+ mTvSteps?.text = " - "
+ } else {
+ mTvSteps?.text = info.stepCount
+ }
}
private var currentItem222 = -1