SoccerLeagueView

Additional

Language
Java
Version
1.0 (Nov 28, 2017)
Created
Nov 22, 2017
Updated
Nov 28, 2017 (Retired)
Owner
DAGNOGO Jean-François (jdagnogo)
Contributor
DAGNOGO Jean-François (jdagnogo)
1
Activity
Badge
Generate
Download
Source code

Advertisement

SoccerLeagueView

an Android lib that creates a league view. Feel free to send me suggestions or improvements : jdagnogo11@gmail.com


Presentation :

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.

Screenshots :

How to install :

  allprojects {
   repositories {
    ...
    maven { url 'https://jitpack.io' }
      }
     }

     
  compile 'com.github.jdagnogo:SoccerLeagueView:1.0'

How to use :

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);
    }
    }