How to create access point programmatically

前端 未结 3 1117
故里飘歌
故里飘歌 2021-01-31 19:22

I\'ve written the code to create an access point for android devices. I\'ve tested on both emulator and real device.But it doesn\'t work. Where did i get wrong?

         


        
3条回答
  •  爱一瞬间的悲伤
    2021-01-31 20:17

    Your WiFiManager is definately not initialized.

    In your onCreate method add this:

    wifiManager = (WiFiManager) getSystemService(Context.WIFI_SERVICE);
    

提交回复
热议问题