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) 报错的 果然还是我太天真了这样是找不到的。

 

 

 


posted @ 2016-07-22 11:05  一座城池2012  阅读(9530)  评论(0编辑  收藏  举报