21 September 2011
Familiarity with building mobile apps on Adobe AIR, including familiarity with Objective C and Xcode, or Android development.
Required third-party products
Intermediate
Note: By clicking the download link for any source examples on this page, you acknowledge that you have read and agree to the Adobe AIR SDK License Agreement. These files are considered Sample Code.
Note: Adobe recommends using the next version of Flash Builder for developing native extensions for Adobe AIR. Sign up now to get access to the prerelease of Flash Builder 4.6.
The Gyroscope class is a native extension for Adobe AIR. It allows AIR application developers, from ActionScript, to access the gyroscope data of an Android or iOS mobile device.
The attached ZIP file contains:
The ActionScript library contains the Gyroscope class. The Gyroscope class provides the AIR application these public methods and properties:
public static function get isSupported(): Booleanpublic function setRequestUpdateInterval(newInterval:int): voidpublic function dispose(): voidThe AIR application can create many instances of the Gyroscope class. However, the Gyroscope class creates only one ExtensionContext class instance that all the Gyroscope instances share.
The native side of the extension dispatches a StatusEvent event that the ExtensionContext instance listens for:
extCtx.addEventListener(StatusEvent.STATUS, onStatus);
The event contains the the x, y, and z data of the device's gyroscope. The native side dispatches this event at the fastest rate possible for the native operating system.
Each Gyroscope instance dispatches an event of type class GyroscopeEvent at the interval set by setRequestUpdateInterval() for that instance:
private function onInterval(e:TimerEvent):void {
// For each Gyroscope instance, at the requested interval,
// dispatch the gyroscope data.
if (extCtx != null) {
dispatchEvent(new GyroscopeEvent(GyroscopeEvent.UPDATE, _x, _y, _z));
}
}
dispose() methodThe AIR application calls dispose() when it no longer needs gyroscope data. Each time the application creates an instance of the Gyroscope class, the constructor increments a reference count. The dispose() function decrements the reference count, and when the count is 0, dispose() calls a native function to stop providing gyroscope data to the ActionScript side.
To use the Gyroscope extension, an AIR application does the following:
isSupported property.For example:
var gyro:Gyroscope;
if(Gyroscope.isSupported)
{
gyro = new Gyroscope();
gyro.setRequestedUpdateInterval(1000);
gyro.addEventListener(GyroscopeEvent.UPDATE,onChange);
}
The following code shows the event handler:
private function onChange(e:GyroscopeEvent):void
{
trace("From gyro: " + e.x + " " + e.y + " " + " " + e.z);
}
The Android native library is implemented in Java, using the native extension Java API. The native library includes the following classes:
The native library also contains the class GyroscopeListener. An object of this class receives the Android SensorEvent event, and in turn calls the GyroscopeExtensionContext object's dispatchStatusEventAsync().
The native library also contains examples of using these FREObject methods:
newObject()getAsInt()In its initialization, the native library uses the getActivity() method of the FREContext class to get the application's Android Activity. Using the returned Activity, the initialization method (InitFunction.call()) gets the sensor service:
SensorManager sm = (SensorManager)extCtx.getActivity().getSystemService(Activity.SENSOR_SERVICE);
Note: The call from the ActionScript side to ExtensionContext.createExtensionContext() must return before the native library can call methods of the object derived from the FREContext class. Therefore, the call getActivity() occurs in the initialization function that the ActionScript side calls after the return from createExtensionContext(). The call to getActivity() cannot occur in the FREContext object constructor.
The iOS native library is implemented in Objective C, using the native extension C API. The native library contains examples of these native extension C APIs:
FREInitializer() and FREFinalizer().FREContextInitializer() and FREContextFinalizer().FREFunction(). The native functions include ADBE_GYRO_startGyro(), ADBE_GYRO_stopGyro(), ADBE_GYRO_supportGyro(), and ADBE_GYRO_initStub().FREDispatchStatusEventAsync()FRENewObjectFromBool()The native functions use iOS classes such as CMMotionManager and CMGyroData to check if a gyroscope is available and to access the device's gyroscope data.
Note: In the iOS native implementation, no initialization is necessary, and so the initialization native function, ADBE_GYRO_initStub() , does nothing. However, the function is necessary because the Android native implementation requires an initialization function. Therefore, to make the extension's ActionScript interface the same for all native implementations, the iOS native implementation provides the stub.
For more information about developing native extensions for Adobe AIR, see:
For more information about using a native extension in an AIR application, see: