Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. @Override
  3. public void onReceive(Context context, Intent intent) {
  4.  
  5. Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
  6. vibrator.vibrate(2000);
  7. Toast.makeText(context, "I'm running", Toast.LENGTH_SHORT).show();
  8. Log.e("START", "I'm running");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement