[android] Added unknown difficulty

This commit is contained in:
Dmitry Donskoy 2020-03-26 19:25:04 +03:00 committed by Vladimir Byko-Ianko
parent 85ddb75fe5
commit 05c19c6261

View file

@ -20,6 +20,7 @@ public class ElevationProfileViewRenderer implements PlacePageViewRenderer<Place
{
// Must be correspond to map/elevation_info.hpp constants.
private static final int MAX_DIFFICULTY_LEVEL = 3;
private static final int UNKNOWN_DIFFICULTY = 0;
@SuppressWarnings("NullableProblems")
@NonNull
@ -107,7 +108,7 @@ public class ElevationProfileViewRenderer implements PlacePageViewRenderer<Place
for (View levelView : mDifficultyLevels)
levelView.setEnabled(false);
boolean invalidDifficulty = level > MAX_DIFFICULTY_LEVEL;
boolean invalidDifficulty = level > MAX_DIFFICULTY_LEVEL || level == UNKNOWN_DIFFICULTY;
UiUtils.hideIf(invalidDifficulty, mDifficultyContainer);
UiUtils.hideIf(invalidDifficulty, mMediumDivider);