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(), 
                Settings.System.AIRPLANE_MODE_ON,0) != 0;

is set to false even though the Airplane mode is enabled. Is there any way to query the airplane mode on a blackberry?

有帮助吗?

解决方案

Spoke with a BB developer, and it seems to be currently not possible to do that programmatically.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top