Kotlin Android 详解Kotlin Android开发中的环境配置

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Kotlin Android 详解Kotlin Android开发中的环境配置

拼搏的少年   2021-03-24 我要评论
想了解详解Kotlin Android开发中的环境配置的相关内容吗,拼搏的少年在本文为您仔细讲解Kotlin Android的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Kotlin,Android开发中的环境配置,Kotlin,Android环境配置,下面大家一起来学习吧。

详解Kotlin Android开发中的环境配置

在Android Studio上面进行安装插件

Settings ->Plugins ->Browse repositores.. ->kotlin 安装完成后重启Android Studio就生效了 如图所示:

在Android Studio中做Kotlin相关配置

(1)在根目录 的build.gradle中进行配置使用,代码如下:

buildscript {
  ext.kotlin_version = '1.1.2-4'
  repositories {
    jcenter()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:2.2.0'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  }
}

allprojects {
  repositories {
    jcenter()
  }
}

task clean(type: Delete) {
  delete rootProject.buildDir
}

(2)在app/build.gradle 中配置的使用

apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
 compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"

repositories {
  mavenCentral()
}

这样,kotlin的配置就已经完成了,我们来写第一个项目hello world

开始进行第一个小Demo的使用

(1)在布局文件中写一个textview控件,代码如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  tools:context="com.yoyoyt.kotlindemo.ThreeActivity">
  <TextView
    android:id="@+id/text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="aaaa"/>
</LinearLayout>

(2)我们进行找id赋值使用

第一种找控件的方式 代码如下:

import android.os.Bundle
import android.support.v7.app.AppCompatActivity
import android.widget.TextView
import kotlinx.android.synthetic.main.activity_three.*

class ThreeActivity : AppCompatActivity() {

  private var b : TextView ?= null
  override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_three)

    text.text="aaa"
  }
}

第二找控件的方法 代码如下:

import android.os.Bundle
import android.support.v7.app.AppCompatActivity
import android.widget.TextView
import android.widget.Toast

class ThreeActivity : AppCompatActivity() {

  private var b : TextView ?= null
  override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_three)
    b = findViewById(R.id.text) as TextView
    b!!.text="shds"
    Toast.makeText(this,b!!.text.toString(),Toast.LENGTH_SHORT).show()
  }
}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们