在 Android Studio 中完成初始屏幕后,如何移动到下一个屏幕?

How can I move to the next screen after the splash screen is done in Android Studio?

我用动态布局制作了启动画面。 这些是代码。

the splash screen xml file

the .kt file that has the splash screen ( 1/2 )

the .kt file that has the splash screen ( 2/2 )

我正在尝试从 MainActivity.kt(启动画面开始的地方)移动到 Intent_example2.kt。

我听说我必须处理 Manifest.xml 文件,但我不知道它的代码。

请帮帮我,谢谢。

在这里,您正试图从 MainActivity 移动到 MainActivity

改变

startActivity(Intent(this@MainActivity, MainActivity::class.java)) 

startActivity(Intent(this@MainActivity, Intent_example2::class.java)) 

它应该可以正常工作。