gpt4 book ai didi

android - 从复数中获取字符串以在 XML 中使用?

转载 作者:IT王子 更新时间:2023-10-28 23:43:50 27 4
gpt4 key购买 nike

我正在使用 Plurals 来简化我的代码。例如,我曾经有过

<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 的复数中检索字符串吗?

最佳答案

你必须通过代码设置它:

...setText(yourContext.getResources().getQuantityString(R.plurals.cats, catsCountVar));

关于android - 从复数中获取字符串以在 XML 中使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17458965/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com