Guest User

Untitled

a guest
Jan 11th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. new CountDownTimer(1000, 100) {
  2. @Override
  3. public void onTick(long l) {
  4. switchOn();
  5. switchoff();
  6. int x = 4;
  7. int y = 10;
  8. Toast toast = Toast.makeText(getApplicationContext(),""+l+"",Toast.LENGTH_SHORT);
  9. toast.show();
  10. }
  11.  
  12. @Override
  13. public void onFinish() {
  14.  
  15. }
  16. }.start();
Add Comment
Please, Sign In to add comment