黄沙百战穿金甲,不破楼兰终不还。这篇文章主要讲述Android Studio 3.0 |Kotlin 测试相关的知识,希望能为你提供帮助。
Google官方支持了,体验一下。
文章图片
【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"); }}
推荐阅读
- SpringMVC系列: 注解@RequestMapping@PathVariable
- Linux/Android——usb触摸屏驱动 - usbtouchscreen
- Cutting-Edge.Applied.Technologies.ProtoWizard.v3.0.0.11 1CD(珠宝加工设计软件)
- android中倒计时控件CountDownTimer分析
- android 横竖屏切换不重走生命周期
- Macac App Inspetor经过的坑
- facebook广告上传Invalid appsecret_proof provided in the API argument
- android studio 使用
- WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add