我正在使用复数来简化我的代码。例如,我曾经有
<string name="cat">Cat</string>
<string name="cats">Cats</string>
使用复数而不是多个字符串,我现在有了
<plurals name="cats">
<item quantity="one">Cat</item>
<item quantity="other">Cats</item>
</plurals>
但是,我曾经检索字符串以用作我的 XML 中的标题或摘要。例如,
android:title="@string/cats"
删除该字符串以支持复数后,我现在不确定如何从 XML 中检索我的字符串。我确实做了一个天真的尝试
android:title="@plurals/cats"
但这只是给了我@1234567890
而不是Cats
(或Cat
)。
任何人都知道是否可以从 XML 的复数中检索字符串?