an Android lib that creates a league view. Feel free to send me suggestions or improvements : jdagnogo11@gmail.com
This application allows you to :
- create a league view
- order by points or win or others..
- get all the results
- you only need two or more teams to begin
- all stat will be generated and you can have access to it.
allprojects { repositories { ... maven { url 'https://jitpack.io' } } } compile 'com.github.jdagnogo:SoccerLeagueView:1.0' see the example in MainActivity
initTeams(); SoccerLeagueView soccerLeagueView = (SoccerLeagueView) findViewById(R.id.soccer); soccerLeagueView.addTeam(teams); // dont forget to call this method // a league will start if there more than one team soccerLeagueView.startLeague("Premiere League"); // add a list of matches matches.add(new Match(teams.get(1),teams.get(1),1,1)); matches.add(new Match(teams.get(1),teams.get(0),1,1)); soccerLeagueView.addMatch(matches); // or add a single match soccerLeagueView.addMatch(new Match(teams.get(1),teams.get(2),1,4)); private void initTeams() { for( int i =0; i<19;i++){ Team team = new Team("team"+i,"t"+i); teams.add(team); } } 

