if (tracker.statusID(1, false) ==
MediaTracker.COMPLETE){ }
the second(boolean) argument in statusID() is about the images which are yet to be loaded .A true means there are more images and a false means that loading is complete .
So,since MediaTracker.COMPLETE flag is used ,then would this make sense ?:
if (tracker.statusID(1, true) ==
MediaTracker.COMPLETE){ }
tracker is a MediaTracker object.
Please correct me if I have interpreted the meaning of the boolean argument wrongly .