ButterKnife注解式绑定控件
Posted leizz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ButterKnife注解式绑定控件相关的知识,希望对你有一定的参考价值。
Butter Knife android为控件设计的注解绑定库。
github地址:https://github.com/JakeWharton/butterknife
添加依赖:(具体看github官网)
dependencies {
implementation ‘com.jakewharton:butterknife:9.0.0-rc2‘
annotationProcessor ‘com.jakewharton:butterknife-compiler:9.0.0-rc2‘
}
注意:·修饰类型不能是:private 或者 static
·//绑定activity
ButterKnife.bind(this);
·//绑定fragment
ButterKnife.bind( this , view ) ;
·//解除绑定
ButterKnife.unbind(this);
·//多个控件id 注解
@BindViews({ R.id.button1 , R.id.button2 , R.id.button3 }public List<Button> buttonList ;
·//绑定string 字符串
@BindString( R.string.app_name ) public String str;
·//绑定string里面array数组
@BindArray(R.array.city );
·//绑定Bitmap 资源
@BindBitmap( R.mipmap.wifi )
·//绑定一个颜色值
@BindColor( R.color.colorAccent )
·//设置一个点击事件
@OnClick(R.id.button1 )
·//设置一个长按事件
@OnLongClick(R.id.button1)
以上是关于ButterKnife注解式绑定控件的主要内容,如果未能解决你的问题,请参考以下文章
框架手写系列---apt注解处理器方式实现ButterKnife框架