اینم اولی برای روشن کردن و دومی برای خاموش کردن حالت پرواز

      Settings.System.putInt(getContentResolver(),Settin  gs.System.AIRPLANE_MODE_ON, 1);//Turning ON Airplane mode.
Toast.makeText(getApplicationContext(), "Air Plane Mode is On",Toast.LENGTH_LONG).show();//Displaying a Message to user
Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);//creating intent and Specifying action for AIRPLANE mode.
intent.putExtra("state", true);////indicate the "state" of airplane mode is changed to ON
sendBroadcast(intent);//Broadcasting and Intent



Settings.System.putInt(getContentResolver(),Settin gs.System.AIRPLANE_MODE_ON, 0);//Turning OFF Airplane mode.
Toast.makeText(getApplicationContext(), "Air Plane Mode is Off",Toast.LENGTH_LONG).show();//Displaying a Message to user
Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);//creating intent and Specifying action for AIRPLANE mode.
intent.putExtra("state", false);//indicate the "state" of airplane mode is changed to OFF
sendBroadcast(intent);//Broadcasting and Intent


اینم مجوز
android.permission.WRITE_SETTINGS