android studio中TextView tv_one = findViewById (R.id.tv_one);TextView,=这两个为啥报错?
时间: 2024-05-21 07:10:37 浏览: 160
Android TextView
这两个报错的原因可能是因为你没有导入相关的包或者没有定义 R.id.tv_one 这个 TextView。你可以尝试以下两种方法:
1. 导入相关包
在你的 Java 文件中,导入以下包:
import android.widget.TextView;
2. 定义 R.id.tv_one
确保在你的布局文件中定义了 TextView,并且它的 id 为 tv_one,例如:
<TextView
android:id="@+id/tv_one"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
然后在你的 Java 文件中定义 R.id.tv_one:
TextView tv_one = findViewById(R.id.tv_one);
阅读全文