android.os.Vibrator
Class that operates the vibrator on the device.
If your process exits, any vibration you started with will stop.
Summary
Public Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
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.
|