Class WalkingActivityDetector
Definition
- Assembly:
- Tizen.Sensor.dll
The WalkingActivityDetector class is used for registering callbacks for the walking activity detector and getting the walking state.
public sealed class WalkingActivityDetector : ActivityDetector
- Inheritance
Constructors
View SourceWalkingActivityDetector(uint)
Initialize a new instance of the WalkingActivityDetector class.
Declaration
public WalkingActivityDetector(uint index = null)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | index | Index refers to a particular walking activity detector in case of multiple sensors. Default value is 0. |
Properties
View SourceCount
Return the number of walking activity detectors available on the system.
Declaration
public static int Count { get; }
Property Value
| Type | Description |
|---|---|
| int | The count of walking activity detectors. |
IsSupported
Return true or false based on whether the walking activity detector is supported by the device.
Declaration
public static bool IsSupported { get; }
Property Value
| Type | Description |
|---|---|
| bool |
|
Walking
Get the state of the walking activity detector as enum DetectorState type.
Declaration
public DetectorState Walking { get; }
Property Value
| Type | Description |
|---|---|
| DetectorState | The walking state, DetectorState. |
Events
View SourceDataUpdated
An event handler for storing the callback functions for the event corresponding to the change in the walking activity gesture detector data.
Declaration
public event EventHandler<WalkingActivityDetectorDataUpdatedEventArgs> DataUpdated
Event Type
| Type | Description |
|---|---|
| EventHandler<><WalkingActivityDetectorDataUpdatedEventArgs> |