gpt4 book ai didi

Android 资源 ID 分配不正确

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

我遇到了一个奇怪的问题,如果我不时调用getString(R.string.somestringname),即使在删除R 文件并重新编译之后,也会出现不正确的字符串。模拟器没有崩溃,并且出现了一个有效的字符串 - 只是错误的字符串。

我的 strings.xml 示例:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Activity Names -->
<string name="app_name">an app name</string>
<string name="selector_name">app name | Select</string>
<string name="create">Create</string>
<string name="overview_name">appname | Overview</string>
<string name="another_name">appname | Another View</string>

.....
<!-- Edit Note -->
<string name="placeholder">Foo bar</string> <-- here is a problem
<string name="created">Created:</string>

</resources>

这是遇到其中一个问题的代码示例:

if (note.created != null) {
createdtext.setText(getString(R.string.created) + " " + Util.longDateFormat(note.created));
}

输出的文本(有时)是 Foo bar November 03, 2010(即属于 R.string.placeholder)。到底是怎么回事?这让我很想对字符串进行硬编码;-)

感谢您的帮助!

最佳答案

使用 ant clean install 而不仅仅是 ant install

Java 将像 R.id 值这样的常量内联到生成的字节码中,有时您的类没有被重新编译,即使它们需要重新编译。理想情况下,ant install 会正确处理这个问题;在它完成之前,ant clean install 是你的 friend 。

关于Android 资源 ID 分配不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4084460/

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