Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检查我的设备是否配备了WiFi硬件。
我如何获得这些信息?
我可以从下面的代码中获取 WifiManager 实例。
WifiManager wifiMgr = (WifiManager) getActivity().getSystemService(Context.WIFI_SERVICE);
if (getPackageManager().hasSystemFeature(PackageManager.FEATURE_WIFI)) { // WiFi }
请参阅PackageManager 文档