2016-12-01 73 views
0

我在編碼所以新請具體說明的答案如果可能的話,因爲我可能不能完全理解明顯的事情:)如何在圖表中顯示Google健身數據集?

我想顯示的一組數據,我從谷歌飛度API獲得一個圖表(沒有任何一個,所以你可以提出一個簡單的) 我使用的是Android Studio 2.2

我從日誌中獲得了最近7天的數據集,但不知道如何處理它上。

private static void dumpDataSet(DataSet dataSet) { 
     Log.i(TAG, "Data returned for Data type: " + dataSet.getDataType().getName()); 
     DateFormat dateFormat = getTimeInstance(); 
     TextView textView; 

     for (DataPoint dp : dataSet.getDataPoints()) { 
      Log.i(TAG, "Data point:"); 
      Log.i(TAG, "\tType: " + dp.getDataType().getName()); 
      Log.i(TAG, "\tStart: " + dateFormat.format(dp.getStartTime(TimeUnit.MILLISECONDS))); 
      Log.i(TAG, "\tEnd: " + dateFormat.format(dp.getEndTime(TimeUnit.MILLISECONDS))); 
      for(Field field : dp.getDataType().getFields()) { 
       Value val = dp.getValue(field); 
       String fieldName = field.getName(); 
       Log.i(TAG, "\tField: " + field.getName() + 
         " Value: " + dp.getValue(field)); 
      } 
     } 
    } 

日誌放出來的數據集7天(低於一個數據集):

I/BasicHistoryApi:Number of returned buckets of DataSets is: 7 
I/BasicHistoryApi: Data returned for Data type: com.google.step_count.delta 
I/BasicHistoryApi: Data point: 
I/BasicHistoryApi: Type: com.google.step_count.delta 
I/BasicHistoryApi: Start: 12:01:46 
I/BasicHistoryApi: End: 11:47:10 
I/BasicHistoryApi: Field: steps Value: 6844 

我希望你明白我的內涵。 非常感謝您提前:) :)

回答