If Fragment's `onStart` is always called (even whe...
# android
z
If Fragment's
onStart
is always called (even when you've backgrounded the app and returned) what is its purpose? How do you do something only once after a fragment's view is created?
stackoverflow 1
j
If you would go over the list of fragment lifecycle methods, what lifecycle method do you think would do things once a view is created?
z
i made the mistake of looking at the diagram in the developer docs
forgetting that there are more methods 🤦
thanks!