У меня есть приложение для Android и эта строка в ресурсах:
<string name="create_group_select_people">Select up to %1$d people!</string>
Это вызывается из фрагмента:
Integer countMax = 5; //also tried just "int" - nothing changed
getResources().getString(R.string.create_group_select_people, countMax);
но я получил ошибку:
Format string 'create_group_select_people' is not a valid format string so it should not be passed to String.format
Я не понимаю, что случилось? Когда я запускаю приложение, он показывает мне буквально "Выберите до% 1 $ d людей!"