安装开发环境
下载并安装最新版 Android Studio(官方 IDE),安装时勾选 Kotlin 插件。确保 JDK 版本为 11 或更高。
创建新项目
打开 Android Studio 选择 File > New > New Project,选择 Empty Activity 模板。在配置界面中:
- 将语言设置为 Kotlin
- 最低 API 级别建议选择 API 21(Android 5.0)
编写基础代码
打开 MainActivity.kt
文件,默认会生成以下代码框架:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
}
设计简单界面
编辑 res/layout/activity_main.xml
文件,添加一个按钮和文本框:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello Kotlin!"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me"/>
</LinearLayout>
添加交互逻辑
在 MainActivity.kt
中为按钮添加点击事件:
val button = findViewById<Button>(R.id.button)
val textView = findViewById<TextView>(R.id.textView)
button.setOnClickListener {
textView.text = "Button clicked!"
}
运行调试
连接安卓设备或启动模拟器,点击工具栏的绿色运行按钮。首次运行会进行 Gradle 构建,完成后应用将自动安装到设备。
扩展功能示例
如需添加 Toast 消息提示:
button.setOnClickListener {
Toast.makeText(this, "Action triggered", Toast.LENGTH_SHORT).show()
}
项目结构说明
app/manifests/AndroidManifest.xml
:应用配置入口app/java/
:Kotlin 源代码目录app/res/
:资源文件(布局、图片等)build.gradle
:模块级配置,可修改 Kotlin 版本和依赖项
注意:确保 build.gradle
文件中包含 Kotlin 标准库依赖:
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}