如何在主屏幕上显示 Toast
How to show Toast on homescreen
我有一个 activity 使用:
val i = Intent(Intent.ACTION_MAIN)
i.addCategory(Intent.CATEGORY_HOME)
startActivity(i)
Toast.makeText(this, "Fetching attendance, hold your phone close to the terminal ...",
Toast.LENGTH_SHORT).show()
调用上面的函数后自动return回到主界面,但是toast不显示。如何在主屏幕上显示祝酒词?
this
代表上下文。所以不要使用 this
使用 applicationContext
Toast.makeText(applicationContext, "Fetching attendance, hold your phone close to the terminal ...",
Toast.LENGTH_SHORT).show()
我有一个 activity 使用:
val i = Intent(Intent.ACTION_MAIN)
i.addCategory(Intent.CATEGORY_HOME)
startActivity(i)
Toast.makeText(this, "Fetching attendance, hold your phone close to the terminal ...",
Toast.LENGTH_SHORT).show()
调用上面的函数后自动return回到主界面,但是toast不显示。如何在主屏幕上显示祝酒词?
this
代表上下文。所以不要使用 this
使用 applicationContext
Toast.makeText(applicationContext, "Fetching attendance, hold your phone close to the terminal ...",
Toast.LENGTH_SHORT).show()