Google Fit Android Api中TYPE_STEP_COUNT_DELTA和AGGREGATE_STEP_COUNT_DELTA数据类型有何区别?

时间:2016-02-03 11:32:07

标签: google-api google-fit google-fit-sdk

Google Fit API描述了传感器API的两种数据类型。然而,两者似乎都返回相同的数据。任何人都可以解释这种差异吗?

2 个答案:

答案 0 :(得分:0)

TYPE_STEP_COUNT_DELTA:     在com.google.step_count.delta数据类型中,每个数据点表示自上次读取后所执行的步骤数。

AGGREGATE_STEP_COUNT_DELTA:     在一个时间间隔内汇总的步数。

你可以在这里看到更多: https://developers.google.com/android/reference/com/google/android/gms/fitness/data/DataType

答案 1 :(得分:0)

// Setting a start and end date using a range of 1 week before this moment.
Calendar cal = Calendar.getInstance();
Date now = new Date();
cal.setTime(now);
long endTime = cal.getTimeInMillis();
cal.add(Calendar.WEEK_OF_YEAR, -1);
long startTime = cal.getTimeInMillis();

java.text.DateFormat dateFormat = getDateInstance();
Log.i(TAG, "Range Start: " + dateFormat.format(startTime));
Log.i(TAG, "Range End: " + dateFormat.format(endTime));

DataReadRequest readRequest = new DataReadRequest.Builder()
        // The data request can specify multiple data types to return, effectively
        // combining multiple data queries into one call.
        // In this example, it's very unlikely that the request is for several hundred
        // datapoints each consisting of a few steps and a timestamp.  The more likely
        // scenario is wanting to see how many steps were walked per day, for 7 days.
        .aggregate(DataType.TYPE_STEP_COUNT_DELTA, DataType.AGGREGATE_STEP_COUNT_DELTA)
        // Analogous to a "Group By" in SQL, defines how data should be aggregated.
        // bucketByTime allows for a time span, whereas bucketBySession would allow
        // bucketing by "sessions", which would need to be defined in code.
        .bucketByTime(1, TimeUnit.DAYS)
        .setTimeRange(startTime, endTime, TimeUnit.MILLISECONDS)
        .build();
相关问题