Вопрос

Is it possible to track motion sensor events on Android continuously, even if the app is not in foreground?

If yes - what's the drain on battery?

A client asked if it would be possible to write an app that would initiate an action if the person "falls" - which basically means continuously listening to the motion sensor for rapid movement.

Это было полезно?

Решение

First, you can definitely monitor the sensors in the background. You need to use a service for that type of application. Here is an example of someone creating a barometer data logger. There's not really any reason you couldn't use different sensors.

Second, as far as I'm aware, running the sensors continuously like that would drain the battery quickly. This presentation suggests that depending on your sampling speed, you could burn through about 4% of the battery per hour on the sensor use.

Lastly, you can definitely wake the phone and take action upon an event received by that service. See this question.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top