Android Studio使用系列——butterknife插件代替findViewById

以前用Eclipse里都要手写findViewById去找控件或者用xUtils去注解,感觉还是比较麻烦的,AS中为我们提供了这样一个插件:

(1)点击工具栏里的 project structure


(2)点击dependencies,点击旁边的绿色加号,选择1

Android Studio使用系列——butterknife插件代替findViewById_第1张图片

(3)输入butterknife联网查询选择第一个OK之后便会加入到类库里

Android Studio使用系列——butterknife插件代替findViewById_第2张图片

(4)工具栏里点击Settings,输入butterknife,点击下面蓝色的Browse

Android Studio使用系列——butterknife插件代替findViewById_第3张图片

(5)点Install,之后要重启AS

Android Studio使用系列——butterknife插件代替findViewById_第4张图片

(6)在setContentView()的R.layout.***后面按下 alt+insert 即可出现菜单 选择哪个Injections,即可自动生成xml里所有定义的id文件

Android Studio使用系列——butterknife插件代替findViewById_第5张图片


要注意的是如果此方法不能生成 Injections菜单,还有一种解决办法是先去把刚装的那个包给 uninstall 再 去网上搜索下载 butterknife-7.0.1.jar 然后把它粘贴到 libs下 再右击 add AS library 即可有菜单出现。我就属于后者这个情况,前者方法不管用。



你可能感兴趣的:(Android Studio使用系列——butterknife插件代替findViewById)