Vibrator In Android
How to create Vibrator object and call vibrate function? http://developer.android.com/reference/android/os/Vibrator.html doesn't give much information regarding how to create the o
Solution 1:
I think you're looking for:
Vibratorbzzz= (Vibrator) getSystemService(VIBRATOR_SERVICE);
See the docs.
Post a Comment for "Vibrator In Android"