android – butterknife中bind和injectView之间的区别

前端之家收集整理的这篇文章主要介绍了android – butterknife中bind和injectView之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用butterknife库.我不太了解如何使用它.我发现injectView和bind做同样的事情,但我不太确定.任何人都可以解释这两者之间的区别.

解决方法

谁能解释这两者之间的区别?

@InjectView已更改为@Bind.

Annotate fields with @Bind and a view ID for Butter Knife to find and
automatically cast the corresponding view in your layout.

class YourActivity extends Activity {
  @Bind(R.id.TvTitle) TextView title;

请检查以下链接.希望这可以帮助 .

> JakeWharton Butterknife
> The import butterknife.InjectView cannot be resolved
> Introduction Butter Knife

摇篮

compile 'com.jakewharton:butterknife:7.0.1' //8.4.0

07003

原文链接:https://www.f2er.com/android/316904.html

猜你在找的Android相关文章