AndroidStudio偷懒开发插件Butterknife Zelezny提高代码编写速度和开发效率

来源:互联网 发布:learning python中文版 编辑:程序博客网 时间:2024/05/29 05:56
ButterKnife的github上的主页:
http://jakewharton.github.io/butterknife/
目前版本为8.1.0
首先安装插件:


安装后重启AS,在module的build.gradle添加:
compile 'com.jakewharton:butterknife:8.1.0'

同步完成后,在代码里点中布局文件然后ALT+Insert:

确定后自动生成代码:
public class SecondActivity extends AppCompatActivity {
@BindView(R.id.textView)
TextView textView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
ButterKnife.bind(this);
}

@OnClick(R.id.textView)
public void onClick() {
}
}
0 0
原创粉丝点击