Android Question vibration enabled

Erel

B4X founder
Staff member
Licensed User
Longtime User
On Android 4+ you can use this code to check whether this feature is available:
B4X:
Private Sub HasVibrator As Boolean
   Dim jo As JavaObject
   jo.InitializeContext
   Dim p As Phone
   If p.SdkVersion < 12 Then Return True
   Return jo.RunMethodJO("getSystemService", Array("vibrator")).RunMethod("hasVibrator", Null)
End Sub
 
Upvote 0
Top