【转】AndroidError:” ” is not trans
2017-06-20 本文已影响22人
紫荆逸
Android开发错误:Error:” ” is not translated in “en” (English) [MissingTranslation]如何处理?
在Android编译时发现这个错误,见下图
最终在StackOverFlow上找到了解决方法,大概有这么几种方法,现整理如下,供大家参考:
1、尝试添加translatable=”[true / false]”
<string name="junkchen" translatable="false">Junk Chen!</string>
2、在resources中添加属性
<resources
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="MissingTranslation" >
3、指定语言
<resourcesxmlns:tools="http://schemas.android.com/tools"tools:locale="en"></resources>
4、使用Android studio可以在build.gradle中的android中添加lintOptions
lintOptions {
disable'MissingTranslation'
}
或者
lintOptions {
checkReleaseBuilds false
abortOnError false
}
暂时发现这几种方法都可以解决,我都测试通过。