在我的主要activity.kt页面中,我试图导入按钮代码以设置一些OnClickListeners,但是它无法识别我试图导入的代码。我做错了什么?当我从2:50开始遵循本教程https://www.youtube.com/watch?time_continue=289&v=OGfZpfn-dGI时 当我输入按钮的ID时,它将告诉我该名称是我的名称的无保留引用
我已经尝试过多次重命名id,但是没有任何作用
button_right为红色文本,告诉我其未解决的参考,但这是我在xml主要活动页面中拥有的确切代码
当我测试该应用程序时,它运行得很好,但是我无法让onlicklistener正常工作
`
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button right"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button_bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button bottom"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
button_right.SetOnlclickListeners{}
}`