All Projects β†’ jdagnogo β†’ SoccerLeagueView

jdagnogo / SoccerLeagueView

Licence: other
An Android lib that display a league table

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to SoccerLeagueView

Euro2016 TerminalApp
⚽ Instantly find πŸ†EURO 2016 live-streams & highlights, now a Web App!
Stars: ✭ 54 (+200%)
Mutual labels:  soccer, soccer-matches
Soccer ggplots
Soccer/football analytics blog posts & data viz from the World Cup, Premier League, Copa America, and beyond. Using ggplot2, ggsoccer, & more. (Est. June 2018) ****Please look at the README for best version of the code!****
Stars: ✭ 115 (+538.89%)
Mutual labels:  soccer
Footballdata
A hodgepodge of JSON and CSV Football/Soccer data
Stars: ✭ 526 (+2822.22%)
Mutual labels:  soccer
Epl Fantasy Geek
English Premier League 2017-18 Fantasy Stats for Geeks
Stars: ✭ 50 (+177.78%)
Mutual labels:  soccer
Engsoccerdata
English and European soccer results 1871-2020
Stars: ✭ 615 (+3316.67%)
Mutual labels:  soccer
Fifa Fut Data
Web-scraping script that writes the data of all players from FutHead and FutBin to a CSV file or a DB
Stars: ✭ 55 (+205.56%)
Mutual labels:  soccer
Football Crunching
Analysis and datasets about football (soccer)
Stars: ✭ 252 (+1300%)
Mutual labels:  soccer
Awesome Soccer Analytics
βš½οΈπŸ“ˆ A curated list of awesome resources related to Soccer Analytics.
Stars: ✭ 244 (+1255.56%)
Mutual labels:  soccer
Understat
An asynchronous Python package for https://understat.com/.
Stars: ✭ 88 (+388.89%)
Mutual labels:  soccer
Soccergraphr
Soccer Analytics in R using OPTA data
Stars: ✭ 42 (+133.33%)
Mutual labels:  soccer
Football Cli
⚽ Command line interface for Hackers who love football
Stars: ✭ 984 (+5366.67%)
Mutual labels:  soccer
Open Data
Free football data from StatsBomb
Stars: ✭ 891 (+4850%)
Mutual labels:  soccer
Wrighteaglebase
WrightEagle Base Code for RoboCup Soccer Simulation 2D
Stars: ✭ 73 (+305.56%)
Mutual labels:  soccer
World Cup 2018 Cli Dashboard
βš½πŸ†A World Cup 2018 CLI dashboard – Watch matches in your terminal
Stars: ✭ 529 (+2838.89%)
Mutual labels:  soccer
Draw
⚽ Champions League draw simulator
Stars: ✭ 134 (+644.44%)
Mutual labels:  soccer
Fifa Worldcup 2018
FIFA Worldcup 2018 - json data
Stars: ✭ 335 (+1761.11%)
Mutual labels:  soccer
Golazon
Football data mnmlist way. Built with Next.js and Ruby.
Stars: ✭ 28 (+55.56%)
Mutual labels:  soccer
Soccerapi
soccerapi ⚽️ , an unambitious soccer odds scraper
Stars: ✭ 52 (+188.89%)
Mutual labels:  soccer
Pydfs Lineup Optimizer
Daily Fantasy Sports lineup optimzer for all popular daily fantasy sports sites
Stars: ✭ 245 (+1261.11%)
Mutual labels:  soccer
Robocup Software
Georgia Tech RoboJackets Software for the RoboCup Small Size League
Stars: ✭ 155 (+761.11%)
Mutual labels:  soccer

SoccerLeagueView

an Android lib that creates a league view. Feel free to send me suggestions or improvements : [email protected]


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);
				}
		  }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].