public class

Vibrator

extends Object
java.lang.Object
   ↳ android.os.Vibrator

Class Overview

Class that operates the vibrator on the device.

If your process exits, any vibration you started with will stop.

Summary

Public Methods
void cancel()
Turn the vibrator off.
void vibrate(long[] pattern, int repeat)
Vibrate with a given pattern.
void vibrate(long milliseconds)
Turn the vibrator on.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public void cancel ()

Turn the vibrator off.

public void vibrate (long[] pattern, int repeat)

Vibrate with a given pattern.

Pass in an array of ints that are the times at which to turn on or off the vibrator. The first one is how long to wait before turning it on, and then after that it alternates. If you want to repeat, pass the index into the pattern at which to start the repeat.

Parameters
pattern an array of longs of times to turn the vibrator on or off.
repeat the index into pattern at which to repeat, or -1 if you don't want to repeat.

public void vibrate (long milliseconds)

Turn the vibrator on.

Parameters
milliseconds How long to vibrate for.