Example usage for Java android.os Vibrator fields, constructors, methods, implement or subclass
The text is from its open source code.
void | cancel() Turn the vibrator off. |
boolean | hasVibrator() Check whether the hardware has a vibrator. |
void | vibrate(long milliseconds) Vibrate constantly for the specified period of time. |
void | vibrate(VibrationEffect vibe) |
void | vibrate(long milliseconds, AudioAttributes attributes) Vibrate constantly for the specified period of time. |
void | vibrate(long[] pattern, int repeat) Vibrate with a given pattern. |
void | vibrate(VibrationEffect vibe, AudioAttributes attributes) |