美文网首页
【转】AndroidError:” ” is not trans

【转】AndroidError:” ” is not trans

作者: 紫荆逸 | 来源:发表于2017-06-20 14:12 被阅读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

    }

    暂时发现这几种方法都可以解决,我都测试通过。

    相关文章

      网友评论

          本文标题:【转】AndroidError:” ” is not trans

          本文链接:https://www.haomeiwen.com/subject/dcgoqxtx.html