I have the following code, and i want to have a toast message that says "Congratulations nameToasted, you made 5 points!" but i get "CongratulationsnameToasted, you made5points!". i have already tried spacing on the strings.xml, but nothing.
String pointsInMessage = getString(R.string.congratulations) + nameToasted;
pointsInMessage = pointsInMessage + getString(R.string.you_made);
pointsInMessage = pointsInMessage + pointsPerAnswer;
pointsInMessage = pointsInMessage + getString(R.string.points_string) ;