如何确定设备是否有振动器?
我有一个设备,我不知道它是否有振动器。
有没有办法查询振动器的可用性?
I have a device of which I don't know if it has a vibrator.
Is there a way to query for the availability of the vibrator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Vibrator
类就是这样做的。它的hasVibrator()
方法返回一个指示是否支持振动的布尔值。hasVibrator()
方法查询 Vibrator 类。The
Vibrator
class does just that. It'shasVibrator()
method returns a boolean indicating if vibrating is supported.hasVibrator()
method.这可能对 API<11 有帮助:
Context.getSystemService()
返回一个服务对象,如果没有服务,则返回null
。This may help for API<11:
Context.getSystemService()
returns a service object ornull
if no service.您需要(至少)支持 Android 3.0 (11 HoneyComb),然后才能使用 hasVibrator()。
奇怪的是,您可以在任何/所有版本上使用 vibrate() 本身。
所以真正的问题是:v1 - v10 如何检测设备是否有振动器?
(或者如果您尝试在没有振动器的情况下振动设备,不会发生什么不好的事情吗?)
You need to support (at least) Android 3.0 (11 HoneyComb) before you can use hasVibrator().
Oddly, you can use vibrate() itself on any/all versions.
So the REAL question is: How do v1 - v10 detect if the device has vibrator?
(Or will nothing bad happen if you try to vibrate a device without a vibrator?)
也许它会对某人有所帮助。
由于我正在构建 PWA,因此我最终检查了屏幕尺寸:
Maybe it'll help someone.
Since I'm building a PWA, I ended up checking the screen size: