我想使用复数资源来产生带引号的数字,例如"9"

在我的plurals.xml中:

<plurals name="posts">
  <item quantity="other">\"%dd\"<\item>
</plurals>

代码:
String text = res.getQuantityString(R.plurals.posts, meUser.postCount);

postCount为9时,为什么text变成"%dd"而不是"9"

最佳答案

the Android docs:



res.getQuantityString(R.plurals.numberOfSongsAvailable, count, count);

09-04 18:49