lemonisdead Well-Known Member Licensed User Longtime User Jul 2, 2014 #1 Hello, I am definitely not good enough to understand the intents. I am sorry about. Please, do you know the intent to use to show the screen where the user can change the AirPlane mode manually ? Many thanks
Hello, I am definitely not good enough to understand the intents. I am sorry about. Please, do you know the intent to use to show the screen where the user can change the AirPlane mode manually ? Many thanks
NJDude Expert Licensed User Longtime User Jul 2, 2014 #2 There's no direct way to do it, but you could show the settings screen. B4X: Private i As Intent i.Initialize("", "") i.SetComponent("com.android.settings/.Settings") StartActivity(i) Upvote 0
There's no direct way to do it, but you could show the settings screen. B4X: Private i As Intent i.Initialize("", "") i.SetComponent("com.android.settings/.Settings") StartActivity(i)
lemonisdead Well-Known Member Licensed User Longtime User Jul 2, 2014 #3 Many thanks for your idea and your quick reply, NJDude. I now understand why I did not found it Upvote 0