请帮助在 Kotlin android main Activity 中调用同伴之外的另一个函数
class MainActivity{
val name = "stackoverflow"
companion object(){
//call the both the name and showDialog from this main thread
}
fun showDialog(){
Dialog.show()
}
}