7

Which method handles the changing appearance of a Fragment UI?

view full story
linux-howto

http://stackoverflow.com – Basically, I have a list of detail fragments and each one represents a list of peers of that phone. When one of these DeviceDetails is tapped on, a selection of buttons and text appears. Which of these buttons and text appears depends on the status of the phone; it is either connected to the phone being used, or it is available for connection. I currently use the fragment's onCreateView to make 3 buttons appear. 1 of these buttons should appear every time, and the other 2 alternate depending on the connected/available state. I am trying to figure out which overridden fragment method should h (HowTos)