Android - 条件禁用lint检查字段上是否存在特定注释

时间:2018-02-21 14:16:52

标签: android lint butterknife android-lint

由于我不能将ButterKnife绑定视图设为私有("Declaration of access can be weaker"本身否认它),我希望仅当我拥有{ButterKnife时才能避免BindView的lint检查1}}在一个字段上注释“ @BindView(R.id.dl_trader) NDrawerLayout mDrawerLayout; ”。在所有其他情况下,我希望让Lint通知我关于可能较弱的访问。

我在这种情况下想要自动避免Lint警告

@SuppressWarnings("WeakerAccess")

PS =我想避免每次用ButterKnife绑定视图时手动插入str = "Hello\\nWorld"。还有其他自动方式吗?

0 个答案:

没有答案