Home / App Templates / Android / Applications / Event
World Cup Russia 2018 Android Source CodeWorld Cup Russia 2018 Android Source Code
The best app template for the upcoming World Cup Final Average rating of 5.0 based on 1 votesHome / App Templates / Android / Applications / Event
World Cup Russia 2018 Android Source Code
The best app template for the upcoming World Cup Final Average rating of 5.0Frequently asked questions (FAQ)
Problem with round of 16 match (Belgium vs Japan)
All the knockout matches should be automatically updated but there is a bug for the match between Belgium and Japan. Here is the quick fix:-
Go to AdapterListKOMatches.java & MatchDetailActivity.java and change all the below statements:
1) < 32 change to <=32
2) > 32 change to >= 32
Example:-
if (p.home_team.getClass().equals(String.class)) {
view.name1.setText(p.home_team.toString());
} else {
if (Integer.valueOf(p.home_team.toString()) <= 32) {
view.name1.setText(Tools.getTeam(Integer.valueOf(p.home_team.toString()) - 1).name);
Tools.displayImageRound(ctx, view.image1, Tools.getDrawable(ctx, Tools.getTeam(Integer.valueOf(p.home_team.toString()) - 1).iso2));
} else
view.name1.setText(p.home_team.toString());
}
Please perform the changes on both the admin and client apps.
Sorry for the inconvenience caused. Thank you.
Go to AdapterListKOMatches.java & MatchDetailActivity.java and change all the below statements:
1) < 32 change to <=32
2) > 32 change to >= 32
Example:-
if (p.home_team.getClass().equals(String.class)) {
view.name1.setText(p.home_team.toString());
} else {
if (Integer.valueOf(p.home_team.toString()) <= 32) {
view.name1.setText(Tools.getTeam(Integer.valueOf(p.home_team.toString()) - 1).name);
Tools.displayImageRound(ctx, view.image1, Tools.getDrawable(ctx, Tools.getTeam(Integer.valueOf(p.home_team.toString()) - 1).iso2));
} else
view.name1.setText(p.home_team.toString());
}
Please perform the changes on both the admin and client apps.
Sorry for the inconvenience caused. Thank you.
Information
Category | App Templates / Android / Applications / Event |
First release | 30 April 2018 |
Last update | 4 October 2022 |
Operating Systems | Android 7.0, Android 8.0, Android 9.0, Android 10.0, Android 11.0, Android 12.0, Android 4.0, Android 5.0, Android 6.0 |
Files included | Layered .png, .java, .xml |
Tags | football, firebase |