Im deploying app which creates match schedule.
You have to type teams, then app create schedule and then you adding results and app shows sorted table with results.
In main activity i have object Tourney, which have method addResult(int homescore,int awayscore) - its adding results.
In main activity is Button, which starts ListActivity, where you can see remaining matches. After you click on match you can insert score of home and away team and match will be marked as played and moved from list.
My question is, how can i call method Tourney.addResult() from main activity if im at different activity?
Thank you.