如何在处理程序中将 java 转换为 kotlin
Posted
技术标签:
【中文标题】如何在处理程序中将 java 转换为 kotlin【英文标题】:How to Convert java to kotlin in handler 【发布时间】:2017-11-12 08:31:49 【问题描述】:new Handler().postDelayed(new Runnable()
@Override
public void run()
/* Create an Intent that will start the Menu-Activity. */
Intent mainIntent = new Intent(Splash.this,Menu.class);
Splash.this.startActivity(mainIntent);
Splash.this.finish();
, 3000);
【问题讨论】:
您可以使用Code-> Convert Java File to Kotlin File
作为开始。您也可以将此代码粘贴到 Kotlin 文件中,它会为您转换。
【参考方案1】:
Handler(Looper.getMainLooper()).postDelayed(
/* Create an Intent that will start the Menu-Activity. */
val mainIntent = Intent(this, Menu::class.java)
startActivity(mainIntent)
finish()
, 3000)
【讨论】:
@creativecoder 默认构造函数已弃用。它现在指定主循环器以避免此问题并确保延迟的代码始终在主线程上运行。以上是关于如何在处理程序中将 java 转换为 kotlin的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Kotlin 中将数据类转换为 ByteBuffer?
如何在 Kotlin 中将 listView 转换为 RecyclerView
如何在 Kotlin 中将 Firestore 日期/时间戳转换为日期?