Android Kotlin环境使用ButterKnife的方法

Android Kotlin环境使用ButterKnife的方法,第1张

概述ButterKnife黄油刀大家应该都挺熟悉的,有这个之后,就不用写一堆的findViewById,体力活,最近试着玩玩Kotlin语言,也就尝试在Kotlin语言环境下使用ButterKnife,有一点小问题,解决并分享一下。

Butter Knife 黄油刀大家应该都挺熟悉的,有这个之后,就不用写一堆的findVIEwByID,体力活,最近试着玩玩Kotlin语言,也就尝试在Kotlin语言环境下使用ButterKnife,有一点小问题,解决并分享一下。

先看看java环境的用法

1.安装插件,然后重启AndroID studio。

安装插件.jpg

2.使用,点击一下在setContentVIEw(R.layout.activity_main);然后快捷键Alt+insert。

Alt+insert.jpg

3.使用。

使用.jpg

4.完成

@BindVIEw(R.ID.circleVIEw)CircleVIEw circleVIEw;@BindVIEw(R.ID.tv_test)TextVIEw tvTest; @OverrIDeprotected voID onCreate(Bundle savedInstanceState){  super.onCreate(savedInstanceState);  setContentVIEw(R.layout.activity_main);  ButterKnife.bind(this);} /** 多个控件点击事件,会有大括号包起来,中间逗号隔开* */@OnClick({R.ID.circleVIEw,R.ID.tv_test})public voID onVIEwClicked(VIEw vIEw){  switch (vIEw.getID())  {    case R.ID.circleVIEw:      break;    case R.ID.tv_test:      break;  }} @OverrIDeprotected voID onDestroy(){  ButterKnife.bind(this).unbind();  super.onDestroy();}

Kotlin环境

1.随意新建一个kotlin文件

new kotlin.jpg

2.然后工程会有几个地方变化

多了Configure.jpg

ok.jpg

module.jpg

project.jpg

3.添加对kotlin的支持

apply plugin: 'com.androID.application'apply plugin: 'kotlin-android-extensions'apply plugin: 'kotlin-androID'apply plugin: 'kotlin-kapt' dependencIEs {  implementation filetree(dir: 'libs',include: ['*.jar'])  implementation 'com.androID.support:appcompat-v7:26.1.0'  implementation 'com.androID.support.constraint:constraint-layout:1.0.2'  //控件插件  implementation 'com.jakewharton:butterknife:8.8.1'  kapt 'com.jakewharton:butterknife-compiler:8.8.1'  compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"}

添加kotlin支持.jpg

4.使用,直接用就好,不用再BindVIEw了。

不需要BindVIEw了.jpg

直接使用.jpg

5.注意要对应的xml,以免同样的控件ID引起空指针异常。

注意.jpg

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

您可能感兴趣的文章:Android Studio中ButterKnife插件的安装与使用详解androidstudio3.0使用butterknife报错解决的解决方法解决Android Studio 3.0 butterknife:7.0.1配置的问题Android注解使用之ButterKnife 8.0详解Android注解ButterKnife的基本使用 总结

以上是内存溢出为你收集整理的Android Kotlin环境使用ButterKnife的方法全部内容,希望文章能够帮你解决Android Kotlin环境使用ButterKnife的方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1142812.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存