Android Studio 3.0 |Kotlin 测试

黄沙百战穿金甲,不破楼兰终不还。这篇文章主要讲述Android Studio 3.0 |Kotlin 测试相关的知识,希望能为你提供帮助。
Google官方支持了,体验一下。 

Android Studio 3.0 |Kotlin 测试

文章图片

【Android Studio 3.0 |Kotlin 测试】XML
< ?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" 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 World!" /> < Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="change text in textview" android:onClick="Button_onClick"/> < Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Test Toast function" /> < /LinearLayout>

kt
package com.example.kotlindemoimport android.support.v7.app.AppCompatActivity import android.os.Bundle import android.view.View import android.widget.Toast import kotlinx.android.synthetic.main.activity_main.*class MainActivity : AppCompatActivity() {override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) button2.setOnClickListener(View.OnClickListener { Toast.makeText(this, "Test Toast", Toast.LENGTH_SHORT).show() }) }fun Button_onClick(view: View){ textview.setText("Test change"); }}

 

    推荐阅读