You need String formatter. Please change below code from
getResources().getString(R.string.create_group_select_people, countMax);
to
String temp = String.format(getResources().getString(R.string.create_group_select_people), countMax);
For more detail information refer