Error:(107) Error: “xxx” is not translated in “zh” (Chinese) [MissingTranslation]
分类:Android, Java
阅读 (5,285)
Add comments
4月 172016
转载请注明原文地址:http://bcoder.com/java/error107-error-xxx-is-not-translated-in-zh-chinese-missingtranslation
今天使用Android Studio给app打包的时候出现下面的提示错误,
Error:(107) Error: “hello_world” is not translated in “zh” (Chinese) [MissingTranslation]
这个错误是由于项目里有中英文两个语言的字符串资源,但是默认的英文的strings.xml里有一部分字符串值在中文的strings.xml里没有值造成的,要让Android Studio不提示这个问题,只要在resources节点里增加 xmlns:tools=”http://schemas.android.com/tools” tools:ignore=”MissingTranslation”就可以了,如下所示:
1 2 3 4 5 6 |
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> <string name="app_name">hello_world</string> <resources> |