gpt4 book ai didi

android - 使用 Context.getText 和 Context.getResources.getText 有什么区别吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:33:44 28 4
gpt4 key购买 nike

所以我注意到似乎有两种方法可以获取相同的数据,我不确定是否有关于何时应该使用其中任何一种的指南(除了绕过 getResources 可以节省内存,如果你实际上不想多次使用该对象)。但除此之外,我想知道是否有使用指南或理由

Context.getText(id) 与 Context.getResources.getText(id)

有人能帮忙吗?

最佳答案

没有区别。 getText(id) 的来源是:

/**
* Return a localized, styled CharSequence from the application's package's
* default string table.
*
* @param resId Resource id for the CharSequence text
*/
public final CharSequence getText(int resId) {
return getResources().getText(resId);
}

您可以在 Context.java on netmite 上亲自查看其中有一个版本的 Android 源代码。

关于android - 使用 Context.getText 和 Context.getResources.getText 有什么区别吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9399535/

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