Я пробовал использовать библиотеку Mpandroidchart, но я не смог добиться большого прогресса, так как многие примеры мне не помогают. Как этот https://www.youtube.com/watch?v=C0O9u0jd6nQ&t=509s. Будут ли у кого-нибудь другие решения или хорошие примеры
public void saveMatchDetailsStarGame(View view){
String scoreHomeTeam =((TextView)
findViewById(R.id.homeTeamScore)).getText().toString();
String scoreAwayTeam =((TextView)
findViewById(R.id.awayTeamScore)).getText().toString();
String foul =((TextView) findViewById(R.id.matchFoul)).getText().toString();
String wide =((TextView) findViewById(R.id.matchWide)).getText().toString();
String redCard =((TextView) findViewById(R.id.matchRedCard)).getText().toString();
String yellowCard =((TextView) findViewById(R.id.matchYellowCard)).getText().toString();
String freeWon =((TextView) findViewById(R.id.matchFreeWon)).getText().toString();
String mark =(( TextView) findViewById(R.id.matchMark)).getText().toString();
sDatabase.child("Home Team Score").setValue(scoreHomeTeam);
sDatabase.child("Away Team Score").setValue(scoreAwayTeam);
sDatabase.child("Foul").setValue(foul);
sDatabase.child("Wide").setValue(wide);
sDatabase.child("Red Card").setValue(redCard);
sDatabase.child("Yellow card").setValue(yellowCard);
sDatabase.child("Free Won").setValue(freeWon);
sDatabase.child("Mark").setValue(mark);
sDatabase.child("Match Time").setValue(mChronometer);
startActivity(new Intent(startGameContinue.this, homepage.class));
}
}```