Working on making some views of my app's UI more dynamic. Wanted to know if calling View.show() is equivocal to View.setVisible(true) in order to determine if it's redundant for me to call both in my code when wanting a hidden element to appear. Same goes for hiding a UI element. Doesn't seem to throw a fit if I call both.
I would assume the show() method would have to change the View.visible attribute the same way as its respective set() method. Are they essentially the same functions with different names or is there a specific use-case where one should be used over the other?