若要使用到 String.format() 的話
例如
想顯示 已經下載了 多少 bit 的 檔案 format 成 數字格式
String.format(getResources().getString(R.string.update_downloaded),currentSize ,totalSize);
String.xml 中
<string name="update_downloaded">Downloaded %s bit of %s bit</string>
會出現錯誤訊息
error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?