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.
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.