What's the difference between ACCESS_NETWORK_STATE and INTERNET?

前端 未结 3 1792
有刺的猬
有刺的猬 2021-02-03 20:43

What\'s the difference between ACCESS_NETWORK_STATE and INTERNET?

If I use INTERNET, is it necessary to use ACCESS_NETWORK_STATE?

In other words, can I use INTER

3条回答
  •  一整个雨季
    2021-02-03 21:17

    android.permission.INTERNET
    

    is enough if you just want to use internet (connect to a web service or show a web page on webView).

    android.permission.ACCESS_NETWORK_STATE
    

    is "nice to have" to query status of network state before using internet.

提交回复
热议问题