Android Question Switching Phone Provider Networks

cooperlegend

Active Member
Licensed User
Longtime User
Hi, Does anyone know a method of switching Phone Provider Networks from with an App?

Problem - Customer is on Vodafone, some areas that they work in the Vodafone network is pretty poor, but roaming to O2 or EE provides a better signal.

Solutions - A method of detecting other networks, a way to switch from Vodafone to O2 on request.

Thanks in advance for any help :)

John
 

cooperlegend

Active Member
Licensed User
Longtime User
Second plee !

Anyone know some thing can help?

I currently use Intent to call "ACTION_NETWORK_OPERATOR_SETTINGS" to reveal the setting menu.

But I would rather call the "Network Operators" option in the menu directly, is this possible

current code is


B4X:
Dim i As Intent
    i.Initialize(i.ACTION_MAIN, "")
    i.Action = "ACTION_NETWORK_OPERATOR_SETTINGS"
    i.SetComponent("com.android.phone/.MobileNetworkSettings")
    StartActivity(i)
 
Upvote 0
Top