java.lang.IllegalStateException: Required view 'text1' with ID 2131492943 for field 'mText' was not found. If this view is optional add '@Nullable' annotation

使用ButterKnife 8.2的时候遇到这个问题 很明显空指针问题 按照提示添加 

import android.support.annotation.Nullable;
@Nullable 

造成原因如下:

ButterKnife 没有

ButterKinfe.Bind(this); 或者ButterKnife.Bind(this,view)

我是在BaseActivity中添加ButterKnife.Bind(this) 报错的 果然还是我太天真了这样是找不到的。


原文地址:https://www.cnblogs.com/yizuochengchi2012/p/5694459.html