我正在使用调试器在 android studio 中工作。
var loginButton = findViewById<Button>(R.id.loginButtonFinal)
var emailInput = findViewById<EditText>(R.id.emailInput)
var e = 2
loginButton.setOnClickListener {
println("Log In Button pressed, will log in now")
// insert code for login in here
// signIn(email = emailInput.)
}
如果我在调试器中的行设置断点,var e = 2
我将看到loginButton
并emailInput
输出到调试器的变量部分。但是如果我把调试器放在里面,loginButton.setOnClickListener
它们就不再出现了。
我希望能够在点击发生后查看变量。我能做些什么?