最近刚遇到了奶油刀。我在gradle(module:app)文件中添加了这行: 编译' com.jakewharton:butterknife:7.0.1'
它没有任何错误同步。我能够进口“刀具”.Butterknife'到我的类文件,导入usualyy去。但是无法导入butterknife.InjectView似乎没有?有什么建议吗?
答案 0 :(得分:5)
Butterknife 7.0.0版本包括重命名注释动词的重大变化。这在更改日志中突出显示并反映在网站中。
Version 7.0.0 *(2015-06-27)*
----------------------------
* `@Bind` replaces `@InjectView` and `@InjectViews`.
* `ButterKnife.bind` and `ButterKnife.unbind` replaces `ButterKnife.inject`
and `ButterKnife.reset`, respectively.
...
一个非常好的,最新的用法介绍是http://jakewharton.github.io/butterknife/
这是最简单的用法:
class ExampleActivity extends Activity {
@Bind(R.id.title) TextView title;
@Bind(R.id.subtitle) TextView subtitle;
@Bind(R.id.footer) TextView footer;
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.simple_activity);
ButterKnife.bind(this);
// TODO Use fields...
}
}
答案 1 :(得分:4)
@InjectView
已不再可用,已被@BindView
取代。我们必须导入Butterknife
依赖项才能使用注释。更多关于黄油刀的信息: - http://jakewharton.github.io/butterknife/
@BindView
注释可以实现为: -
@BindView(R.id.button_id)
请注意,您需要从主要活动的ButterKnife.bind(this);
方法调用onCreate()
来启用Butterknife注释。这个实现的一个例子可能是: -
public class MainActivity extends AppCompatibilityActivity{
@BindView(R.id.editText_main_firstName)
EditText firstName;
@BindView(R.id.editText_main_lastName)
EditText lastName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Needs to be called to enable Butterknife annotations
ButterKnife.bind(this);
}
}
如果您在片段中使用Butterknife
,请使用Butterknife.bind(this,view)
视图作为片段视图,即: -
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_other_product_category, container, false);
ButterKnife.bind(this, view);
return view;
}
答案 2 :(得分:3)
显然,[http_proxy]
host = <proxy-server>
no = <mercurial host ip address>
已被@InjectView
取代。
此外,您必须在@Bind
中致电ButterKnife.bind(this);
。