格式字符串 XXX 不是有效的格式字符串,因此不应将其传递给 String.format
2022-08-31 23:53:47
我有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的人!