我正在使用Google Fit History API。一切正常,我正在插入步骤。
// Create a data set
int stepCountDelta = 950;
DataSet dataSet = DataSet.create(dataSource);
// For each data point, specify a start time, end time, and the data value -- in this case,
// the number of new steps.
DataPoint dataPoint =
dataSet.createDataPoint().setTimeInterval(startTime, endTime, TimeUnit.MILLISECONDS);
dataPoint.getValue(Field.FIELD_STEPS).setInt(stepCountDelta);
dataSet.add(dataPoint);
// [END build_insert_data_request]
现在,响应返回了成功,但是当我检查Google Fit dashboard时,它没有收到数据,并且该数据没有从我的应用程序与Google Fit同步。如何获取同步数据?目前,我们的设备上尚未安装Google Fit默认应用。
答案 0 :(得分:0)
您必须安装Google Fit默认应用程序才能同步和接收数据。
您可以按照以下步骤操作:
从Google Play Store
- 下载 Google Fit 手表。
- 在手表上打开 Google Fit 。
- 完成初始设置。
现在,您的手表可以用于收集您的健身数据,并且会自动同步到Google Fit。您可能会在仪表板上看到记录。
您可以检查此blog以获得更多详细信息。