gpt4 book ai didi

android - "Hardcoded string xxx should use @string resource"问题

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

我在 hello world Activity 代码中收到以下错误:

Description Resource Path Location Type
[I18N] Hardcoded string "and this is a clickable button!",
should use @string resource
activity_hello_world.xml/HelloWorld/res/layout line 21 Android Lint Problem

请帮帮我。

最佳答案

这不是错误,这是 Lint 警告。因此您可以运行该应用程序,但推荐的显示文本(在 TextView、按钮等上)的方法是使用字符串引用。你必须去你的 res 文件夹,在 values 下会有一个 strings.xml 文件。在那里添加:

   <string name="my_string">Your Text!</string>

要在你的按钮上设置文本,你必须这样做:

android:text="@string/my_string"

关于android - "Hardcoded string xxx should use @string resource"问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13207999/

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