Unresolved reference: lang in this@MainActivity.runOnUiThread(java.lang.Runnable

Viewed 61

Any ideas why "lang" is not recognized? I found code in kotlin in this question.

1 Answers

Runnable is class from lang package.

you should be import and use it.

import java.lang.Runnable


this@MainActivity.runOnUiThread(Runnable {
    progressBar.visibility = View.GONE
})
Related