AndroidWithKotlin 项目教程
AndroidWithKotlin:rocket: These are android sample projects which are written in Kotlin. It covers video streaming, mp3 player, sqlite, location services, custom camera, o-notifications, simple compass etc.项目地址:https://gitcode.com/gh_mirrors/an/AndroidWithKotlin
1. 项目的目录结构及介绍
AndroidWithKotlin/
├── app/
│ ├── build.gradle
│ ├── src/
│ │ ├── main/
│ │ │ ├── java/
│ │ │ │ └── com.talentica.androidwithkotlin/
│ │ │ │ ├── MainActivity.kt
│ │ │ │ └── ...
│ │ │ ├── res/
│ │ │ │ ├── layout/
│ │ │ │ │ ├── activity_main.xml
│ │ │ │ │ └── ...
│ │ │ │ ├── values/
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── ...
│ │ │ │ └── ...
│ │ │ └── AndroidManifest.xml
│ │ └── ...
│ └── ...
├── build.gradle
├── settings.gradle
└── ...
app/: 主应用程序模块。
build.gradle: 应用程序的构建脚本。src/: 源代码目录。
main/: 主源集。
java/: Kotlin 代码目录。
com.talentica.androidwithkotlin/: 主包目录。
MainActivity.kt: 主活动文件。…: 其他 Kotlin 文件。 res/: 资源目录。
layout/: 布局文件目录。
activity_main.xml: 主活动布局文件。…: 其他布局文件。 values/: 值资源目录。
strings.xml: 字符串资源文件。…: 其他值资源文件。 AndroidManifest.xml: 应用程序清单文件。
2. 项目的启动文件介绍
MainActivity.kt: 这是应用程序的入口点。它继承自 AppCompatActivity
并包含 onCreate
方法,用于设置布局和初始化视图。
package com.talentica.androidwithkotlin
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
}
3. 项目的配置文件介绍
build.gradle (项目级): 包含项目级别的配置,如构建工具版本、依赖仓库等。
// 项目级 build.gradle
buildscript {
ext.kotlin_version = '1.5.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
build.gradle (应用级): 包含应用程序级别的配置,如应用程序的 ID、版本、依赖等。
// 应用级 build.gradle
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdk 30
defaultConfig {
applicationId "com.talentica.androidwithkotlin"
minSdk 21
targetSdk 30
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:
AndroidWithKotlin:rocket: These are android sample projects which are written in Kotlin. It covers video streaming, mp3 player, sqlite, location services, custom camera, o-notifications, simple compass etc.项目地址:https://gitcode.com/gh_mirrors/an/AndroidWithKotlin