Guest User

Untitled

a guest
Nov 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. protected Runnable playingCheck = new Runnable() {
  2. public void run() {
  3. while (true) {
  4. if(videoview.getCurrentPosition() > 0){
  5. // Do ypur stuff
  6. }
  7. }
  8. }
  9. };
  10.  
  11. playingCheck.start();
Add Comment
Please, Sign In to add comment