我是靠谱客的博主 冷艳柚子,最近开发中收集的这篇文章主要介绍Hardcoded string “姓名”, should use @string resource警告,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
在布局文件中,文本的设置使用如下写法时会有警告:Hardcoded string “姓名”, should use @string resource
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="姓名" />
虽然可以正常运行,但是这不是一个好习惯,
建议我们在xml文件当中用到的数字汉字等字符串,应该在res/values/strings.xml中设置:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="xingming">姓名</string>
</resources>
然后再回到原来的xml文件中,引用:
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/xingming"
/>
就行了。像之前的直接写中文也可以,只是不正规。
这样在支持多语言时也是很有用的。
另外,颜色的设置也最好在color.xm中类似设置。
最后
以上就是冷艳柚子为你收集整理的Hardcoded string “姓名”, should use @string resource警告的全部内容,希望文章能够帮你解决Hardcoded string “姓名”, should use @string resource警告所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复