欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

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

时间:2021-03-15 09:54:06|栏目: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()
  }
}

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

上一篇:Android中使用Intent在Activity之间传递对象(使用Serializable或者Parcelable)的方法

栏    目:Android代码

下一篇:Android编程实现PendingIntent控制多个闹钟的方法

本文标题:详解Kotlin Android开发中的环境配置

本文地址:http://www.codeinn.net/misctech/81482.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有