首先在build.gradle开头添加
apply plugin: 'kotlin-android-extensions'
<Button
android:id="@+id/mRegisterBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="注册"
android:layout_marginTop="20dp" />
package com.example.usercenter.ui.activity
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.Toast
import com.example.usercenter.R
import kotlinx.android.synthetic.main.activity_register.*
class RegisterActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_register)
mRegisterBtn.setOnClickListener {
Toast.makeText(this,"注册",Toast.LENGTH_LONG).show()
}
}
}
就这麽简单