Skip to Main Content

MediaTracker.statusID() method

801421May 29 2010 — edited May 30 2010
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 .
Comments
Post Details
Added on May 29 2010
2 comments
413 views