Questions tagged [airplane]

Airplane is a setting to disable the device's signal transmitting functions on mobile devices.

Airplane mode is a setting available on most modern mobile electronic devices like cellphone, tablet and etc. that when engaged, suspends the device's signal transmitting functions (both WIFI and Cellular network), thereby disabling the device's capacity to place or receive calls or text messages or access internet, while still permitting use of other functions, and let user use the device in some restricted area like Airplane.

108 questions
0
votes
2 answers

How Do I Disable AIRPLANE MODE tablet supports 4.4.2

I have to disable AIRPLANE MODE and DATE TIME SETTINGS in my app, for that i used these intent filters but none of them works for me
Sun
  • 6,258
  • 22
  • 69
  • 124
0
votes
2 answers

How to identify iCloud logged in user in airplane mode?

I try to get userRecordID in airplane mode, but I get an error, any other way? class func asdf() { var defaultContainer = CKContainer.defaultContainer() var publicDatabase = defaultContainer.publicCloudDatabase …
János
  • 27,206
  • 24
  • 130
  • 270
0
votes
2 answers

Windows Phone 8.1 Airplane mode event

I want an application (windows Phone 8.1) which shutdown when Airplane mode is ON, and start again when Airplane mode OFF. For this I need event of Airplane mode ON/OFF. I did not found any API for this. Can you please tell me how to achieve in…
0
votes
1 answer

any way to manipulate airplane mode programatically? android

I want to turn on or off airplane mode for a battery saving app im making. Is there really no way to do this? Here is my current code: package com.example.airplaneog; import android.content.Intent; import android.os.Bundle; import…
Kelvin
  • 213
  • 1
  • 2
  • 12
0
votes
1 answer

canDisplayBannerAds and Airplane Mode

I'm testing my app in the Sandbox, and I'm using canDisplayBannerAds with iOS7. I had this working acceptably until I did some tests where I started the app in Airplane Mode (important to me because I need to detect if there is a network connection…
Chris Prince
  • 6,390
  • 1
  • 38
  • 56
0
votes
1 answer

Table view without a network connection IOS

We're new to IOS programming. We have a simple app that builds a table view using JSON data collected from an API we made. When there is no network connection, the app crashes of course, because all the UITableViewController delegate methods are…
0
votes
4 answers

Enable and Disable Airplane Mode successively Android

I am just a starter in Android. I have an Android code which has a Button. On click of the button, it should Invoke AirPlane mode and then again back to normal mode. Here is my code : public void onCreate(Bundle savedInstanceState) { …
trueblue
  • 190
  • 4
  • 17
0
votes
1 answer

Airplane mode in Android on BlackBerry

I have been loading an Android app onto a Z10, and noticed the code that worked on Android is not working properly on the BlackBerry. Specifically, the following variable boolean isAirplaneMode = Settings.System.getInt(getContentResolver(), …
T Lam
  • 162
  • 5
0
votes
1 answer

can we get location details(latitude,longitude)when iphone is in air plane mode?

I want to get latitude and longitude values using my app,when iphone is in Air Plane mode.Does GPS work in air plane mode?
harshiYL
  • 241
  • 2
  • 4
  • 13
0
votes
1 answer

Add option to toggle airplane mode to Windows 8 application

I would like to ask if it is possible to add an option in the Settings charm to toggle the airplane mode in a Windows 8 application. Thanks in advance!
Dimitris Makris
  • 5,007
  • 2
  • 30
  • 51
0
votes
1 answer

Using a PendingIntent to toggle airplane mode

I am working on an app for Android, for which I would like to be able to toggle Airplane Mode using a PendingIntent. Is this possible? If so, how would I do it? Any help would be greatly appreciated!
Zero
  • 1,754
  • 3
  • 19
  • 37
0
votes
1 answer

Why doesn't CLLocationManager fail when Airplane Mode is switched on?

I have a service class that is CLLocationManager's delegate. If I run the app, then open the Settings App and switch on Airplane Mode, my delegate gets nothing from CLLocationManager. I would expect locationManager:didFailWithError to be called, but…
Undistraction
  • 38,727
  • 46
  • 165
  • 296
0
votes
1 answer

Android why after airplane mode off the phone asks for sim's pin code

As i've read through the internet some phones after the airplane mode ask for the pin code again like when you switch on the phone. This has to do with the phone's brand or the version of android? Is there a way to bypass that through settings for…
ASK
  • 117
  • 1
  • 12
0
votes
1 answer

Set airplanemode at a specific time

public class AirPlaneModeActivity extends Activity { Button b; TimePicker tp; Calendar cal; AlarmManager am ; PendingIntent pi; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
0
votes
3 answers

Unable to turn off Airplane mode

I've create an app with a button that allows airplane mode to be toggled on and off. Works fine when turning airplane mode on. But strangely, airplane mode seems to stay on when it is toggled off. If I check the phone settings after I turn it off,…
vinnyh
  • 267
  • 3
  • 11