当wifi打开时,仅通过Android手机上的移动数据发送数据



即使wifi打开并连接到互联网,也可以通过移动数据以编程方式路由请求吗?

我的应用程序需要调用运营商提供的服务,该服务只能通过移动数据获得,我认为要求关闭wifi对用户不友好。

看看https://developer.android.com/reference/android/net/ConnectivityManager.html

具体来说,它具有允许您做您想做的事的功能。

5 Provide an API that allows applications to request and select networks for their data traffic

您请求一个网络,然后设置默认网络( API 在 23 之前(或使用 bindProcessToNetwork for API>= 23 。

您可能希望请求具有 int TRANSPORT_CELLULAR 功能的网络 (https://developer.android.com/reference/android/net/NetworkCapabilities.html(

相关内容

最新更新