我在strings.xml
<string name="date">%1$d.%2$d.%3$d</string>
并在代码中设置它:
String.format(context.getResources().getString(R.string.date), day, month, year);
如果以5月5日为例,结果现在是:
5.5.2015
如何将超过10的数字的前导零添加到字符串资源?
不是Left padding a String with Zeros的重复,因为此问题的解决方案是:
String.format("%010d", Integer.parseInt(mystring));
但是android资源字符串的格式是:
%1$d
其中1
表示索引。我应该把02
放在哪里?