Android Studio中ButterKnife插件的安装与使用详解

网友投稿 466 2023-03-01


Android Studio中ButterKnife插件的安装与使用详解

1》android Studio 安装ButterKnife插件

同安装其他插件类似,如下:

1.1》打开Plugins界面

按照上图中1,2,3指示操作(注意:这里我的Android Studio中已经安装了该插件,所以显示的内容不太一样)。然后重启Android Studio。

2》在项目上使用该开源项目(以Android Studio 为例)

2.1》在bulid.gradle中添加依赖

重新编译一下该项目,通过后继续操作。

2.2》在代码中就可以使用注解的方式了

2.2.1》示例布局文件如下:

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

android:paddingBottom="@dimen/activity_vertical_margin"

android:paddingLeft="@dimen/activity_horizontal_margin"

android:paddingRight="@dimen/activity_horizontal_margin"

android:paddingTop="@dimen/activity_vertical_margin"

tools:context=".MainActivity">

android:id="@+id/text_veiw_tv1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="TextView 1" />

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

android:paddingBottom="@dimen/activity_vertical_margin"

android:paddingLeft="@dimen/activity_horizontal_margin"

android:paddingRight="@dimen/activity_horizontal_margin"

android:paddingTop="@dimen/activity_vertical_margin"

tools:context=".MainActivity">

android:id="@+id/text_veiw_tv1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="TextView 1" />

android:id="@+id/text_veiw_tv1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="TextView 1" />

android:id="@+id/button_bt1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="Button1" />

android:id="qeCvtrXem@+id/text_veiw_tv2"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="TextView 2" />

android:id="qeCvtrXem@+id/text_veiw_tv2"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="TextView 2" />

android:id="@+id/button_bt2"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="Button2" />

2.2.2》在代码中使用注解

选择上述布局文件名,右键

选择“Confirm”后,就会自动生成各个在布局文件中带有id 属性的view的注解形式

如下所示:

@Bind(R.id.text_veiw_tv1)

TextView textVeiwTv1;

@Bind(R.id.text_veiw_tv2)

TextView textVeiwTv2;

@Bind(R.id.button_bt1)

Button buttonBt1;

@Bind(R.id.button_bt2)

Button buttonBt2;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

ButterKnife.bind(this);

}

标注如下:


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:详解Angular5 服务端渲染实战
下一篇:Java解析word,获取文档中图片位置的方法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~