Android Emulator Vibration Test? [duplicate]
Asked Answered
C

1

12

Is there a way to test vibrations on the Virtual Devices that come with Android Studio?

I tried searching logcat and it seems like there isn't any indication of when the Android device is vibrating or not.

Clementeclementi answered 14/6, 2016 at 6:9 Comment(1)
Wondering the same thing, nothing in logcat, did you find you answer?Sibbie
H
0

Did you try this?

logcat -b system

(Look into this answer: Debug Android vibration)

Othere than that, if you are writing the code, the vibration is called with the method

Vibrator.vibrate(). 

You could write a wrapper around this or create your own vibrator class to add some specific logging next to the vibration call itself.

Hallway answered 20/8, 2018 at 12:21 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.