gpt4 book ai didi

android - 为什么即使我在 xml 中有按钮 ID,它仍然显示 "Unresolved reference: button"?

转载 作者:行者123 更新时间:2023-12-05 01:29:06 25 4
gpt4 key购买 nike

我有一个简单的 android 应用程序,我想单击按钮以传递其他 Activity 。但是它说

Unresolved reference: button

即使我在 xml 中给出 id。我不知道我错在哪里。

截图:

enter image description here

activity_main.xml:

   <Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
android:text="Click"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

主要 Activity :

class MainActivity : AppCompatActivity() {

companion object {
const val USER = "user"
}

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)

val user = User( "mayk", "qqqq", PersonalInfo("mayk", "james"))


button.setOnClickListener{
val intent = Intent (this, Activity2::class.java)
intent.putExtra(USER, user)
startActivity(intent)
}
}
}

最佳答案

val button = findViewById<View>(R.id.button)

关于android - 为什么即使我在 xml 中有按钮 ID,它仍然显示 "Unresolved reference: button"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68040531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com