如何以编程方式检查手机是否支持 wifi?
如何以编程方式检查手机是否支持 wifi?
我不是在谈论启用/禁用 wifi。我想要获取 wifi 硬件/驱动程序的存在
How can I programatically check phone is wifi capable?
I'm NOT talking about enabling/disabling wifi. I want to get the presence of a wifi hardware/driver
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
boolean hasWifi = PackageManager.hasSystemFeature(PackageManager.FEATURE_WIFI);检查 文档,了解您可以测试的更多硬件常量。
ctx
是一个 Context 实例。编辑:嗅探,忘记了正确的使用方法,修复了我的示例。
boolean hasWifi = PackageManager.hasSystemFeature(PackageManager.FEATURE_WIFI);Check the documentation for further hardware constants that you can test.
ctx
is a Context instance.Edit: Sniff, forgot the correct way to use it, fixed my example.
希望这会帮助你
hope this will help you