0

Hi I am developing an android app, where I am trying to turn on/off the phone cellular network. I tried looking for solutions, but did not succeed.

Please help! Thanks in advance.

Dave
  • 297
  • 3
  • 4
  • 15

1 Answers1

0

if your mean is to turn on /off airplane mode you can use following link

Toggle airplane mode in Android.

and be sure that add following line to manifest file

    <uses-permission android:name="android.permission.WRITE_SETTINGS" /> 

/// Edit

As far as im aware flight mode will cover selection of setting to disable all wireless communication.

If you wish to only disable parts this will have to be done individually, not via flight mode.

try a method for each part of communication you wish to terminate.

Community
  • 1
  • 1
Shayan Pourvatan
  • 11,898
  • 4
  • 42
  • 63
  • Not the mobile data. I need to turn off the phone coverage. The user should not be able to make any outgoing/incoming calls and sms. – Dave Nov 30 '13 at 05:11