美文网首页
Error:(151) Error: The WIFI_SERV

Error:(151) Error: The WIFI_SERV

作者: 我才是张雷 | 来源:发表于2017-06-20 20:57 被阅读0次

    错误内容:

    Error:(151) Error: The WIFI_SERVICE must be looked up on the Application context
     or memory will leak on devices < Android N. Try changing Utils.getContext() 
    to Utils.getContext().getApplicationContext()  [WifiManagerLeak]
    

    解决办法:
    无线网络服务WIFI_SERVICE必须由Application的上下文去获取,否则的话,在7.0以下的设备中会发生内存泄漏。所以要在getSystemService方法之前加上getApplicationContext()

    WifiManager mWifiManager = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE);  
    
    

    相关文章

      网友评论

          本文标题:Error:(151) Error: The WIFI_SERV

          本文链接:https://www.haomeiwen.com/subject/hapaqxtx.html