gpt4 book ai didi

java - 无法将 int 传递给 setMessage(String) 方法

转载 作者:行者123 更新时间:2023-11-29 03:30:34 25 4
gpt4 key购买 nike

为什么我在这个句子中会出现编译错误?

this.message.setMessage(R.string.game_over);

错误信息:

The method setMessage(String) in the type Messages is not applicable for the arguments (int)

我想使用我的 res 中存在于字符串文件中的字符串。我知道 arg 是 int 但这是我在网站上阅读的方式

最佳答案

int 是一个 resourceID。您必须获取 ID 代表的字符串:

this.message.setMessage(getResources().getString(R.string.game_over));

关于java - 无法将 int 传递给 setMessage(String) 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18496735/

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