由于我不能将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"
。还有其他自动方式吗?