14

我正在开发演示应用程序以使用 Google Fit 获取当前活动示例。我可以正确获得速度和距离。但是,尽管我处于同一状态,但它并没有非常频繁地返回“in_vehicle”或“biking”状态。找到相同的附加屏幕截图。我的速度为 59.40KM/H(36.91 M/h),当时它没有返回“in_vehicle”活动状态。

请提供相同的解决方案/反馈。

代码 :

@Override
 public void onDataPoint(DataPoint dataPoint) {
     for (Field field : dataPoint.getDataType().getFields()) {
        Value val = dataPoint.getValue(field);
           if(field.getName().trim().toLowerCase().equals("activity"))
                    {
                        if(FitnessActivities.getName(Integer.parseInt(val.toString())).equals("biking"))
                        {
                            strState = "Cycling";
                        }
                        else if(FitnessActivities.getName(Integer.parseInt(val.toString())).equals("in_vehicle"))
                        {
                            strState = "Automotive";
                        }
                        else if(FitnessActivities.getName(Integer.parseInt(val.toString())).equals("walking"))
                        {
                            strState = "Walking";
                        }
                        else
                        {
                            strState = "Not Moving";
                        }
                    }
            }
}

谢谢。

图片

4

3 回答 3

4

你可以在这里找到我创建的示例项目。

https://github.com/cyfung/ActivityRecognitionSample

重要提示:您可能无法按照您的要求频繁获取数据!

从 API 21 开始,如果设备处于省电模式并且屏幕关闭,则接收活动的频率可能低于 detectionIntervalMillis 参数。

关键零件:

在中创建 GoogleApiClientonCreate

mGoogleApiClient =
        new GoogleApiClient.Builder(this).addApi(ActivityRecognition.API)
            .addConnectionCallbacks(this).addOnConnectionFailedListener(this).build();

按照 Google Api 文档中的建议连接onStart和断开 api 客户端。onStop

  @Override
  protected void onStart() {
    super.onStart();
    mGoogleApiClient.connect();
    mStatusView.setText("connecting");
  }

  @Override
  protected void onStop() {
    super.onStop();
    mGoogleApiClient.disconnect();
    mStatusView.setText("disconnected");
  }

启动活动识别(不应在 Google Api 连接之前调用)。用于PendingIntent.getService创建待处理的意图作为回调。

final PendingResult<Status>
    statusPendingResult =
    ActivityRecognition.ActivityRecognitionApi
        .requestActivityUpdates(mGoogleApiClient, DETECT_INTERVAL, PendingIntent
            .getService(this, 0, new Intent(this, ActivityDetectionService.class),
                          PendingIntent.FLAG_UPDATE_CURRENT));
statusPendingResult.setResultCallback(this);

IntentService是建议回调的标准方法

public class ActivityDetectionService extends IntentService {

  protected static final String TAG = "activityDetectionService";

  public ActivityDetectionService() {
    super(TAG);
  }

  @Override
  protected void onHandleIntent(Intent intent) {
    final ActivityRecognitionResult
        activityRecognitionResult =
        ActivityRecognitionResult.extractResult(intent);
    if (activityRecognitionResult == null) {
      return;
    }

    //process the result here, pass the data needed to the broadcast
    // e.g. you may want to use activityRecognitionResult.getMostProbableActivity(); instead
    final List<DetectedActivity>
        probableActivities =
        activityRecognitionResult.getProbableActivities();

    sendBroadcast(MainActivity.newBroadcastIntent(probableActivities));
  }
}

在清单中注册服务。

    <service
            android:name=".ActivityDetectionService"
            android:exported="false">
    </service>

要使用 API,您还需要在清单中添加以下内容。

<uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION"/>

<meta-data
                android:name="com.google.android.gms.version"
                android:value="@integer/google_play_services_version" />

为了将数据返回到活动中,我使用了在 onCreate 中创建的 BroadcastReceiver

mBroadcastReceiver = new BroadcastReceiver() {

  @Override
  public void onReceive(Context context, Intent intent) {
    ...
  }
}

onResume分别在和中注册和注销onPause

  @Override
  protected void onResume() {
    super.onResume();
    registerReceiver(mBroadcastReceiver, newBroadcastIntentFilter());
  }

  @Override
  protected void onPause() {
    super.onPause();
    unregisterReceiver(mBroadcastReceiver);
  }
于 2015-09-09T14:16:34.753 回答
1

正如你所说,你的速度是正确的。您可以在下面编写自定义代码。

if (strState.equals("Automotive") && speed == 0.00)
{
   strState = "Not Moving";
}
else if (strState.equals("Not Moving") && speed > 5)
{
   strState = "Automotive";
}
else
{
   strState = "strState";
}

这可能不是正确的,但它会给你附近的状态结果。

于 2015-09-14T09:08:25.663 回答
-1

我不熟悉 google fit api,所以我能给你的唯一建议是仔细检查你的代码。正在
Integer.parseInt(val.toString())
返回正确的 int,可以
FitnessActivities.getName()
等于“biking”、“walking”、“in_vehicle”等。

从这里我可以看到:https ://developers.google.com/fit/rest/v1/reference/activity-types

Biking、In vehicle 和 Walking 分别为 0、1 和 7。例如,检查 FitnessActivities.getName(0) 返回的内容,还检查 val 是否返回不同的值,或者每次都返回相同的值。

如果您的代码有任何问题,您应该知道任何一行的代码在做什么,返回的方法和函数是什么……同时通知人们,以便他们更容易找到解决方案。

于 2015-09-08T09:59:12.930 回答