码迷,mamicode.com
首页 > 其他好文 > 详细

ButterKnife注解式绑定控件

时间:2018-12-14 10:57:39      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:android   ref   color   nta   col   string   lis   pen   this   

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注解式绑定控件

标签:android   ref   color   nta   col   string   lis   pen   this   

原文地址:https://www.cnblogs.com/leizz/p/10117973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!