android studio Hello World

Andriud Studio 3.5版本,新建Hello World项目。 activity_main.xlm中: <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity">

<TextView
    android:id="@+id/tvHello"                 //添加这一行
    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" />

</androidx.constraintlayout.widget.ConstraintLayout>

MainActivity.kt中: package com.example.myapplication

import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import android.widget.TextView

class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)
    TextView tvH = findViewById(R.id.tvHello)           //添加这一行,报错啊,这一行报错啊!!!!菜鸟问咋了啊
}

}

kotlin的话Activity 可以是直接使用控件,不用findViewById,如果一定要用,提供一下错误日志

不是用java?

改成这样试试:TextView tvH = (TextView)findViewById(R.id.tvHello)