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

ret*_*ent 5 android android-networking android-wifi

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

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

Ang*_*Koh 4

看一下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
Run Code Online (Sandbox Code Playgroud)

您请求一个网络,然后 setDefaultNetwork( API before 23) 或使用 bindProcessToNetwork for API >= 23 。

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