I think I already know the answer to this question because it seems, uh, will uh a bit far fetched. But I am seriously looking for a solution.
Suppose that I have an Activity, call it Bluetooth activity, that starts a bluetooth background thread and the thread runs forever even when the Bluetooth Activity goes away - yes it really does run forever. This bluetooth background thread is a data acquisition thread that continually collects data to be plotted by an Activity, call it Plot activity, in real-time. We can refer to the plotting method as a static method called Plot.plotData();
My problem is I can't tell when the Plot activity is active, so I cannot tell when to start calling Plot.data(). You might think that since Plot.plotData() is a static method I can call it anytime I want. But not so. I have to wait until Plot is instantiated through Intent() and startActivity. Otherwise Plot's onCreate() method has not been called and Plot is full of null pointers.
How do I solve this problem. Add a static getter/setter that is initially false until onCreate is run?