android studio 编译时,忽略 lint 的“miss translation”检查
2种方法
修改 app 的 build.gradle
1 2 3 4 5 | android { lintOptions { disable 'MissingTranslation' } } |
在 resource xml 文件中声明 “忽略翻译检查”
1 2 3 4 5 6 7 8 | <?xml version="1.0" encoding="utf-8"?> <resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation" > <!-- your strings here; no need now for the translatable attribute --> </resources> |