我想使用复数资源来产生带引号的数字,例如"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);