无法绑定视图变量

时间:2016-05-24 20:06:22

标签: android butterknife

当我尝试绑定时,我收到错误消息,指出无法解析方法'bind(我的主要活动的名称)'。

@BindView(R.id.timeLabel) TextView mTimeLabel;
@BindView(R.id.temperatureLabel) TextView mTemperatureLabel;
@BindView(R.id.humidityValue) TextView mHumidityValue;
@BindView(R.id.precipValue) TextView mPrecipValue;
@BindView(R.id.summaryTextView) TextView mSummaryLabel;
@BindView(R.id.iconImageview) ImageView mIconImageView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    // Import view variables
    ButterKnife.bind(this);

1 个答案:

答案 0 :(得分:-1)

看起来Android Studio出了问题。我做的是我去了文件 - 使缓存无效并重新启动。当Android Studio重新启动时,一切正常。