Google在今天发布将Kotlin设为Android开发的第一语言,紧接着又推出了AndroidStudio3.0来支持Kotlin。我们可以看到,在未来Kotlin的崛起应该是必然的了,今天自己研究了一点,先发个最基础的:Kotlin的使用和第一个项目HelloKotlin。
1.如果你使用了AndroidStudio3.0那么这一步就不用看了。使用其他版本AndroidStudio的首先要在设置里下载Kotlin的Plugin。
2.下载之后重启AS,然后我们来创建一个新的工程,就叫HelloKotlin吧(和以前的创建工程一样)。
打开MainActivity.java
文件。然后调用action(Ctrl+Shift+A)在action中输入"convert java File to Kotlin File"将Java文件转换为Kotlin文件,就像下面这样。
转换后,就是这个样子的了
然后在代码中随便编辑一下,会在右上角出现一个提示Kotlin not configured,然后点击Configure
然后提示选择Kotlin版本和需要在哪些module中使用,版本一般都是最新的,不需要改的话直接按确定就好
这时项目的build.gradle会变成这样
buildscript {
ext.kotlin_version = '1.1.2-4'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
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 {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
主程序的build.gradle会成这样
apply plugin: 'com.android.application'然后点击同步按钮更新
apply plugin: 'kotlin-android'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.wzh.hellokotlin"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
testCompile 'junit:junit:4.12'
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}
repositories {
mavenCentral()
}
更新之后代码就可以运行了。
kotlin中文帮助文档下载:http://download.csdn.net/detail/mouseking1993/9845895
本篇代码下载:http://download.csdn.net/detail/mouseking1993/9845914