我想在 Android 上启动另一个活动,但我得到了这个错误:
请指定构造函数调用; 分类器“ Page2”没有伴随对象
在实例化 Intent
类之后。我应该怎么做来纠正错误? 我的代码:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
fun buTestUpdateText2 (view: View) {
val changePage = Intent(this, Page2)
// Error: "Please specify constructor invocation;
// classifier 'Page2' does not have a companion object"
startActivity(changePage)
}
}