Tag: nullpointerexception butterknife

黄油刀8.0.1不起作用

我正在使用nullpointerexception butterknife 8.0.1 ,但出现一个nullpointerexception 。 这一行是在我的build.grade文件上: compile 'com.jakewharton:butterknife:8.0.1' 这是我的Main Class:我写的包括正确) import butterknife.BindView; import butterknife.ButterKnife; public class MainActivity extends BaseActivity { @BindView(R.id.MainScreenTextView) TextView mainText; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.bind(this); **mainText.setText("Butter knife is working fine");** } 这是MainActivity.xml : <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" /> </android.support.design.widget.AppBarLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" […]