前言
Kotlin 在 IO 大会被 Google 定义为 Android 开发第一级语言后,在国内各大网站讨论简直不要太火。
身为程序猿我们要与时俱进,趁着手上工作不是很忙,抓紧时间来赶下时髦,学了几天 kotlin ,发现它的语法糖既简单方便还特别好吃。
kotlin中抽象类的初始化
创建抽象类,实例化如下
adapter = object :BaseQuickAdapter<String, BaseViewHolder>(R.layout.item_memo_layout,lsit){
override fun convert(helper: BaseViewHolder, item: String) {
}
}
BaseQuickAdapter是一个抽象类
/**
* Base Class
* @param T : type of data, 数据类型
* @param VH : BaseViewHolder
* @constructor layoutId, data(Can null parameters, the default is empty data)
*/
abstract class BaseQuickAdapter<T, VH : BaseViewHolder>
@JvmOverloads constructor(@LayoutRes private val layoutResId: Int,
data: MutableList<T>? = null)
: RecyclerView.Adapter<VH>(), BaseQuickAdapterModuleImp, BaseListenerImp {
companion object {
const val HEADER_VIEW = 0x10000111
const val LOAD_MORE_VIEW = 0x10000222
const val FOOTER_VIEW = 0x10000333
const val EMPTY_VIEW = 0x10000555
}
Kotlin 实现Activity之间的跳转
val intent = Intent(context, SecondActivity().javaClass)
startActivity(intent)
或者 方式二
fun jump(view: View) {
val intent = Intent()
//获取intent对象
intent.setClass(this,Main2Activity::class.java)
// 获取class是使用::反射(那么问题来了,反射是个什么鬼?👻👻👻👻小白的悲哀啊,赶紧研究研究去)
startActivity(intent)
}
Kotlin 中 findViewById 的所有姿势
刚开始想用 ButterKnife 来实现 findviewbyid 最后发现没什么用 收集下所有的 findviewbyid
姿势一
不依赖认识组件,纯原生的
val imgLogo_1 = findViewById(R.id.img_logo) as ImageView
姿势二
需要添加官方库 anko 的支持
val imgLogo_2 = find<ImageView>(R.id.img_logo)
地址:
此处有坑!!!
如果直接按照它的文档添加
compile "org.jetbrains.anko:anko:$anko_version"
会爆出异常,如下:
Error:Failed to resolve: com.google.android:android:2.3.1
<a href="install.m2.repo">Install Repository and sync project</a>
<a href="openFile:E:/AS_Project/KotlinDemo/app/build.gradle">Open File</a>
<a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>
在 Google 上找了很久,发现很多人也遇到这个问题,最后在 Anko 的 github 的 Issues 中找到解决:
//compile "org.jetbrains.anko:anko:$anko_version"
compile("org.jetbrains.anko:anko:$anko_version") {
exclude group: 'com.google.android', module: 'android'
}
姿势三
官方库 anko 的支持
val imgLogo_3: ImageView = find(R.id.img_logo)
姿势四:终极大招
什么都不写要写,在代码里直接使用 xml 中的 id,可以减少很多代码
<TextView
android:id="@+id/tv_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
使用方法:
tv_desc.text = "我是最方便的 findViewById "
使用方法比较麻烦,需要添加一些依赖和插件:
Step 1:
在 Moudle的 build.gradle
添加:
apply plugin: 'kotlin-android-extensions'
Step 2:
在 Activity 中手动导入:
import kotlinx.android.synthetic.main.<layout>.*
<layout> 为你要使用的布局,如:activity_main
import kotlinx.android.synthetic.main.activity_main.*
更多使用参考官方文档:
https://kotlinlang.org/docs/tutorials/android-plugin.html
kotlin的初始化注意事项
kotlin 中没有 new 关键字
private var tvDesc: TextView = null
错误:kotlin的变量属性默认是不为空,不能赋值给 null,要加个问号
private var tvDesc: TextView? = null
?表示可以为空
但是你在代码中使用时也要注意,不能直接这样使用
tvDesc.text = "hello"
错误:编译器不能确定它究竟是不是 null
你使用之前自己要确定这个变量一定不为空,如果确定,加上 "!!"
tvDesc!!.text = "hello"
//正确
延迟加载
可以使用 lateinit
关键字进行延迟初始化属性(Late-Initialized Properties)
lateinit 关键字来延迟初始化的
lateinit var etName: EditText
但是 lateinit
关键字并不能随便乱用:
- 不可在 null 的对象上使用
- 只能在 var 使用
- 不能用于构造函数
- 属性不能有自定义的 getter 和 setting
- 不能应用在基本类型上(Int、Float之类)
ps: 如果在一个延迟初始化的属性初始化前调用,会导致一个特定异常,调用的时候值还没有初始化。
延迟加载二
lazy
是 Kotlin 的属性代理的一个实例,它提供了延迟加载的机制。
private val imgLogo: ImageView by lazy {
find<ImageView>(R.id.img_logo)
}
这里的 lazy 提供了初始化 ImageView 的方法,但是它是一个延迟的,只有在 ImageView 第一次被使用时才真正初始化。
虽然第三种方法代码比较多,但是它优秀的避免了方法一和方法二的那些缺点,推举使用。