在一个 android 应用程序中,我有以下字符串资源:
<plurals name="test">
<item quantity="zero">"I have 0 item"</item>
<item quantity="one">"I have 1 item"</item>
<item quantity="other">"I have several items"</item>
</plurals>
以及以下代码行:
String text = getResources().getQuantityString(R.plurals.test, 0)
我希望返回
我有 0 件商品
但它实际上返回
我有 1 件商品
为什么 ?