use of com.thebluealliance.androidclient.listitems.EventTypeHeader in project the-blue-alliance-android by the-blue-alliance.
the class EventInsights2017Renderer method generate2017BonusInsights.
private void generate2017BonusInsights(JsonObject quals, JsonObject elims) {
mEventStats.add(new EventTypeHeader(mResources.getString(R.string.breakdown2017_bonus_stats)));
addQualVsElimInsightsWithPercentage(quals, elims, bonusTitles, bonusKeys);
}
use of com.thebluealliance.androidclient.listitems.EventTypeHeader in project the-blue-alliance-android by the-blue-alliance.
the class EventInsights2018Renderer method generate2018MatchInsights.
private void generate2018MatchInsights(JsonObject quals, JsonObject elims) {
mEventStats.add(new EventTypeHeader(mResources.getString(R.string.breakdown_match_stats)));
addHighScore(quals, elims, "high_score");
addQualVsElimInsights(quals, elims, matchTitles, matchKeys);
}
use of com.thebluealliance.androidclient.listitems.EventTypeHeader in project the-blue-alliance-android by the-blue-alliance.
the class EventInsights2018Renderer method generate2018BonusInsights.
private void generate2018BonusInsights(JsonObject quals, JsonObject elims) {
mEventStats.add(new EventTypeHeader(mResources.getString(R.string.breakdown2017_bonus_stats)));
addQualVsElimInsightsWithPercentage(quals, elims, bonusTitles, bonusKeys);
}
use of com.thebluealliance.androidclient.listitems.EventTypeHeader in project the-blue-alliance-android by the-blue-alliance.
the class EventInsights2019Renderer method generate2019BonusInsights.
private void generate2019BonusInsights(JsonObject quals, JsonObject elims) {
mEventStats.add(new EventTypeHeader(mResources.getString(R.string.breakdown2017_bonus_stats)));
addQualVsElimInsightsWithPercentage(quals, elims, bonusTitles, bonusKeys);
}
use of com.thebluealliance.androidclient.listitems.EventTypeHeader in project the-blue-alliance-android by the-blue-alliance.
the class EventInsights2019Renderer method generate2019MatchInsights.
private void generate2019MatchInsights(JsonObject quals, JsonObject elims) {
mEventStats.add(new EventTypeHeader(mResources.getString(R.string.breakdown_match_stats)));
addHighScore(quals, elims, "high_score");
addQualVsElimInsights(quals, elims, matchTitles, matchKeys);
}
Aggregations