How can I improve this coding (Toast MakeText)

You can’t call Toast.show(). Toast (with capital T) is the class but not the Toast object. You need to call show() on a toast object. Toast.makeText() returns the toast object.

Browse More Popular Posts

Leave a Comment