Answers for "kotlin toast.makeText non of the arguments supplied"

1

kotlin toast.makeText non of the arguments supplied

//In Activity use: 
Toast.makeText(this@YOUR_ACTIVITY_NAME, "your message", Toast.LENGTH_LONG).show()
    
//In Fragments use: 
Toast.makeText(requireActivity(), "your message", Toast.LENGTH_LONG).show()
 
Your problem will be solved...
Posted by: Guest on October-15-2020

Code answers related to "kotlin toast.makeText non of the arguments supplied"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language