Hardcoded string "xxxxxxxxxxxx", should use @string resource警告

在布局文件中,文本的设置使用如下写法时会有警告:Hardcoded string “下一步”, should use @string resource
[html]  view plain copy


  1. <Button  

  2.         android:id=“@+id/button1”  

  3.         android:layout_width=“118dp”   

  4.         android:layout_height=“wrap_content”  

  5.         android:text=“下一步” />“  


虽然可以正常运行,但是这不是一个好习惯,应该在res/values/strings.xml中设置:
[html]  view plain copy


  1. xml version=“1.0” encoding=“utf-8”?>  

  2. <resources>  

  3.     <string name=“message”>下一步string>  

  4. resources>  


引用的时候使用
android:text="@string/message"

就行了。这样做可以做到一改全改,在支持多语言时也是很有用的。另外,颜色的设置也最好在color.xm中类似设置。


ADT中出现类似这样的错误:[I18N] Hardcoded string “button”, should use @string resource.

如上所述,这时你要将自己命名的button先存储在strings.xml中,然后使用strings.xml中的属性值代替button。

解决办法:(1)找到res\values\strings.xml文件,找到类似下面的语句;

2)添加类似图片中语句即可,其中蓝体色name是属性,黑体字像MyPraMyWindows是值。

3)使用时向下面这样:@string/button1.



你可能感兴趣的:(Android,AndroidStudio)