写在前面的话
- 好久都没有在简书上写文章了,前段时间一直没有空闲,最近才有时间整理这段时间的所得。
- 自从 Google I/O 大会上宣布 Kotlin 成为 Android 开发一级语言,Kotlin 这门语言也越来越火了,理所当然的,笔者的项目也要开始向 Kotlin 转移了,接下来呢,还是以项目 KotlinTest Github: 为例,一边学习 Kotlin 语言,一边搭建项目框架。
开发环境
-
要想使用 Kotlin 开发,首先当然是准备好开发工具了,你可以选择使用你当前使用的正式版 Android Studio,只是需要在 File -> Settings... -> Plugins -> Install JetBrains plugin... 中搜索 kotlin,安装重启即可。
你也可以下载使用 Android Studio 3.0 测试版, 其中已经默认支持 Kotlin 开发,不需要再单独下载 Kotlin 插件。当然了,如果你还在使用 Eclipse 进行开发,你也可以找到支持的 kotlin 插件,这里笔者就不详细说明了。
项目中使用Kotlin配置
-
欲练神功、、、不对,要想在项目中使用Kotlin,那首先肯定得在gradle文件中进行相关配置啦。当然,如果你是用的是 Android Studio 3.0 那就比较简单了,只需要在创建项目时勾选上 Include Kotlin support 选项就可以了,项目生成时会自动添加上 Kotlin 支持。像这样:
如果你使用的是正式版的,你就需要在项目创建后,手动添加上相关支持了。像这样:
-
project.gradle
buildscript { ext.kotlin_version = '1.1.51' // Kotlin 插件版本号,设置中查看 repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0-rc1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
这样:
-
module.gradle
apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 26 buildToolsVersion "26.0.2" defaultConfig { applicationId "com.wj.kotlintest" minSdkVersion 15 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation "com.android.support:appcompat-v7:26.1.0" implementation 'com.android.support:recyclerview-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' testImplementation 'junit:junit:4.12' androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', { exclude group: 'com.android.support', module: 'support-annotations' }) implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" }
这样,Kotiln 的配置就完成了,如果使用的 AS 3.0,那么你会发现新建的项目中,MainActivity 默认使用的就是 Kotlin 语言。
-
MainActivity.kt
class Main2Activity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main2) } }
当然了,如果你是用的是正式版,那么在安装完 Kotlin 插件后,你可以使用 Code -> Convert Java File to Kotlin File 将 Java 代码转换成 Kotlin 代码。
最后
- 就这样,Kotlin 的配置就这么说完了,接下来我还会继续更新 Kotlin 中的相关语法、新特性以及 MVP 框架实现,欢迎关注~