diff options
| -rw-r--r-- | core/java/android/os/Vibrator.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/os/Vibrator.java b/core/java/android/os/Vibrator.java index 95962c82a611..12538e6cd46b 100644 --- a/core/java/android/os/Vibrator.java +++ b/core/java/android/os/Vibrator.java @@ -227,6 +227,17 @@ public abstract class Vibrator { } /** + * Check whether the vibrator can be controlled by an external service with the + * {@link IExternalVibratorService}. + * + * @return True if the hardware can be controlled by an external service, otherwise false. + * @hide + */ + public boolean hasExternalControl() { + return getInfo().hasCapability(IVibrator.CAP_EXTERNAL_CONTROL); + } + + /** * Gets the resonant frequency of the vibrator. * * @return the resonant frequency of the vibrator, or {@link Float#NaN NaN} if it's unknown or |