Guest User

Untitled

a guest
Apr 11th, 2018
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. while(true) {
  2.     if(mp.getDuration > 3000) {
  3.             p5_1_a.setTextColor(Color.BLACK);
  4.     }
  5. }
  6. ////////////////////////////////////
  7. // or something like this
  8. ////////////////////////////////////
  9. while(true) {
  10.     Thread.sleep(2500);
  11.     if(mp.getDuration >3000) {
  12.         p5_1_a.setTextColor(Color.BLACK);
  13.     }
  14. }
Add Comment
Please, Sign In to add comment