中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中配置一個Kotlin開放環境

發布時間:2020-12-08 16:11:45 來源:億速云 閱讀:121 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關Android中配置一個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控件,代碼如下:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<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 &#63;= null
  override fun onCreate(savedInstanceState: Bundle&#63;) {
    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 &#63;= null
  override fun onCreate(savedInstanceState: Bundle&#63;) {
    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中配置一個Kotlin開放環境,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荆州市| 潼南县| 平昌县| 宁武县| 汪清县| 浦东新区| 镇宁| 鄢陵县| 兰坪| 中牟县| 吕梁市| 奉节县| 成安县| 南岸区| 丰镇市| 云南省| 兰西县| 德庆县| 大理市| 固阳县| 无棣县| 蓬莱市| 孝昌县| 富阳市| 政和县| 义乌市| 黄梅县| 清流县| 兴山县| 徐水县| 共和县| 大理市| 平原县| 湟中县| 荣昌县| 巢湖市| 定兴县| 利津县| 盐山县| 惠安县| 昭通市|