Format string XXX is not a valid format string so it should not be passed to String.format

前端 未结 12 2151
没有蜡笔的小新
没有蜡笔的小新 2021-02-06 23:06

I have android app and this string in resources:

Select up to %1$d people!

Thi

12条回答
  •  长情又很酷
    2021-02-06 23:46

    You're probably missing the format method of the String class, If you're setting it in a TextView, the proper way is:

    textView.setText(String.format(getResources().getString(R.string.create_group_select_people), countMax));
    

提交回复
热议问题