How do you display a Toast using Kotlin on Android?

前端 未结 15 2206
遇见更好的自我
遇见更好的自我 2021-01-30 16:08

In different Kotlin examples for Android I see toast("Some message...") or toastLong("Some long message"). For example:



        
15条回答
  •  后悔当初
    2021-01-30 16:22

    Show a Toast not from the UI Thread, in a Fragment

    activity?.runOnUiThread {
            Toast.makeText(context, "Image saved to the Gallery", Toast.LENGTH_SHORT).show()
        }
    

提交回复
热议问题