ButterKnife注解框架详解
Android 懒人注解框架 :https://github.com/JakeWharton/butterknife
前言:
注解,相信很多同学都用到了,对控件进行初始化的时候需要用到 findViewById() ,当一个activity 中控件用到的比较多的时候,会显得代码臃肿
比如:
那我们使用注解就很方便了,按下面的步骤来,学一下如何在项目中使用注解
一、添加依赖
在app目录下的 build.gradle文件中添加 :
compile 'com.jakewharton:butterknife:7.0.0'
二、Android Studio安装插件
1、Android Studio 打开一个项目,点击左上角 File -->Settings... 进行设置
2、搜索 'Android ButterKnife' 安装插件 Zelezny 右侧绿色安装按钮
3、写个布局,里面有若干个控件
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/root" android:orientation="vertical" tools:context="com.xqx.customview.MainActivity"> <com.xqx.customview.XViewGroup android:id="@+id/xgroup" android:layout_width="match_parent" android:layout_height="wrap_content"> </com.xqx.customview.XViewGroup> <Button android:id="@+id/jump" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="打开新的Activity" /> <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="文本1" /> </LinearLayout>
4、用插件实现注解
①、在布局上右击,选择Generate
②、选择插件
③、选择要注解的控件
④、提交查看效果 ,会发现每一个控件 都有注解 。并且onCreate()里多了一个 ButterKnife.bind(this);代码
其他插件介绍:
Android开发实战(十八):Android Studio 优秀插件:GsonFormat
Android项目实战(十九):Android Studio 优秀插件: Parcelable Code Generator
作者:听着music睡
出处:http://www.cnblogs.com/xqxacm/
Android交流群:38197636
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 三行代码完成国际化适配,妙~啊~
· .NET Core 中如何实现缓存的预热?
2015-04-12 安卓开发-问题集-Description Resource Path Location TypeUnparsed aapt error(s)! Check the console for output.