I am currently building an Application which uses Dropbox API... (v2)
My Problem:
I want to load some data from Dropbox only when the application is started and not every time when onCreate in my activity is called (e.g. caused by screen rotation). Well, I already found out, that you can extend the application class and write your code into it's onCreate Method to solve the problem... But the data I want to load on Application start has some influence on the ui of my Activity. My question is: how can I pass the data, which I loaded in application class, to my Activity?