5

我正在使用 Google Fit SDK,我可以轻松获取步骤详细信息,但我真的很难在采取这些步骤时获取正在完成的活动。

DataSource ESTIMATED_STEP_DELTAS = new DataSource.Builder()
            .setDataType(DataType.TYPE_STEP_COUNT_DELTA)
            .setType(DataSource.TYPE_DERIVED)
            .setStreamName("estimated_steps")
            .setAppPackageName("com.google.android.gms")
            .build();
    DataReadRequest readRequest = new DataReadRequest.Builder()
            .aggregate(ESTIMATED_STEP_DELTAS, DataType.AGGREGATE_STEP_COUNT_DELTA)
            .bucketByTime(1, TimeUnit.HOURS)
            .setTimeRange(startTime, endTime, TimeUnit.MILLISECONDS)
            .build();

作为回应,如果我检查 DataSet 源,它总是com.google.step_count.delta

我想要这样的东西

4

1 回答 1

0

我认为您应该使用bucketByActivityType而不是 bucketByTime。

然后,在结果 Bucket 的数据集上,使用getActivity()获取活动类型。

于 2015-08-12T19:39:32.613 回答