How to get Heart Rate values from Google Fit History?

假装没事ソ 提交于 2019-12-07 03:29:28

I'm answering my own question.

In order to obtain all the datapoints of the readings made with Google Fit Api, the object DataRsult to build would be as follows:

final DataReadRequest readRequest = new DataReadRequest.Builder()
.read(DataType.TYPE_STEP_COUNT_DELTA)
.read(DataType.TYPE_HEART_RATE_BPM)
.enableServerQueries()
.setTimeRange(startTime, endTime, TimeUnit.MILLISECONDS)
.build();

It would return all datapoints within the specified range.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!