识别用户的当下活动

编写:penkzhou - 原文:http://developer.android.com/training/location/activity-recognition.html

活动识别会去探测用户当前的身体活动,比如步行,驾驶以及站立。通过一个不同于请求位置更新或者地理围栏的活动识别client来请求用户活动更新,但是请求方式是类似的。根据你设置的更新频率,Location Services会返回包含一个或者多个活动以及它们出现对应的概率的反馈信息。这一课将会向你展示如何从Location Services请求活动识别更新。

1)请求活动识别更新

从Location Services请求活动识别更新的过程与请求周期性的位置更新类似。你通过一个client发送请求,接着Location Services 以 PendingIntent的形式将更新数据返回。然而,你在开始之前必须设置好对应的权限。下面的课程将会教你如何设置权限,连接client以及请求更新。

1.1)设置接收更新数据的权限

一个应用想要获得活动识别数据就必须拥有com.google.android.gms.permission.ACTIVITY_RECOGNITION权限。为了让你的应用有这个权限,在你的manifest文件里面将如下代码放到<manifest>标签的里面。

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

活动识别不需要ACCESS_COARSE_LOCATION权限和 ACCESS_FINE_LOCATION权限。

1.2)检查Google Play Services是否可用

位置服务是Google Play services 中的一部分。由于很难预料用户设备的状态,所以你在尝试连接位置服务之前应该要检测你的设备是否安装了Google Play services安装包。为了检测这个安装包是否被安装,你可以调用GooglePlayServicesUtil.isGooglePlayServicesAvailable(),这个方法将会返回一个结果代码。你可以通过查询ConnectionResult的参考文档中结果代码列表来理解对应的结果代码。如果你碰到了错误,你可以调用GooglePlayServicesUtil.getErrorDialog())获取本地化的对话框来提示用户采取适当地行为,接着你需要将这个对话框置于一个DialogFragment中显示。这个对话框可以让用户去纠正这个问题,这个时候Google Services可以将结果返回给你的activity。为了处理这个结果,重写onActivityResult())即可。

Note: 为了让你的应用能够兼容 Android 1.6 之后的版本,用来显示DialogFragment的必须是FragmentActivity而不是之前的Activity。使用FragmentActivity同样可以调用 getSupportFragmentManager() 方法来显示 DialogFragment。

因为你的代码里通常会不止一次地检测Google Play services是否安装, 为了方便,可以定义一个方法来封装这种检测行为。下面的代码片段包含了所有检测Google Play services是否安装需要用到的代码:

  1. public class MainActivity extends FragmentActivity {
  2. ...
  3. //全局变量
  4. /*
  5. * 定义一个发送给Google Play services的请求代码
  6. * 这个代码将会在Activity.onActivityResult的方法中返回
  7. */
  8. private final static int
  9. CONNECTION_FAILURE_RESOLUTION_REQUEST = 9000;
  10. ...
  11. // 定义一个显示错误对话框的DialogFragment
  12. public static class ErrorDialogFragment extends DialogFragment {
  13. // 表示错误对话框的全局属性
  14. private Dialog mDialog;
  15. // 默认的构造函数,将 dialog 属性设为空
  16. public ErrorDialogFragment() {
  17. super();
  18. mDialog = null;
  19. }
  20. // 设置要显示的dialog
  21. public void setDialog(Dialog dialog) {
  22. mDialog = dialog;
  23. }
  24. // 返回一个 Dialog 给 DialogFragment.
  25. @Override
  26. public Dialog onCreateDialog(Bundle savedInstanceState) {
  27. return mDialog;
  28. }
  29. }
  30. ...
  31. /*
  32. * 处理来自Google Play services 发给FragmentActivity的结果
  33. *
  34. */
  35. @Override
  36. protected void onActivityResult(
  37. int requestCode, int resultCode, Intent data) {
  38. // 根据请求代码来决定做什么
  39. switch (requestCode) {
  40. ...
  41. case CONNECTION_FAILURE_RESOLUTION_REQUEST :
  42. /*
  43. * 如果结果代码是 Activity.RESULT_OK, 尝试重新连接
  44. *
  45. */
  46. switch (resultCode) {
  47. case Activity.RESULT_OK :
  48. /*
  49. * 尝试重新请求
  50. */
  51. ...
  52. break;
  53. }
  54. ...
  55. }
  56. }
  57. ...
  58. private boolean servicesConnected() {
  59. // 检测Google Play services 是否可用
  60. int resultCode =
  61. GooglePlayServicesUtil.
  62. isGooglePlayServicesAvailable(this);
  63. // 如果 Google Play services 可用
  64. if (ConnectionResult.SUCCESS == resultCode) {
  65. // 在 debug 模式下, 记录程序日志
  66. Log.d("Location Updates",
  67. "Google Play services is available.");
  68. // Continue
  69. return true;
  70. // 因为某些原因Google Play services 不可用
  71. } else {
  72. // 获取error code
  73. int errorCode = connectionResult.getErrorCode();
  74. // 从Google Play services 获取 error dialog
  75. Dialog errorDialog = GooglePlayServicesUtil.getErrorDialog(
  76. errorCode,
  77. this,
  78. CONNECTION_FAILURE_RESOLUTION_REQUEST);
  79. // 如果 Google Play services可以提供一个error dialog
  80. if (errorDialog != null) {
  81. // 为这个error dialog 创建一个新的DialogFragment
  82. ErrorDialogFragment errorFragment =
  83. new ErrorDialogFragment();
  84. // 在DialogFragment中设置dialog
  85. errorFragment.setDialog(errorDialog);
  86. // 在DialogFragment中显示error dialog
  87. errorFragment.show(getSupportFragmentManager(),
  88. "Geofence Detection");
  89. }
  90. }
  91. }
  92. ...
  93. }

下面的代码片段使用了这个方法来检查Google Play services是否可用。

1.3)发送活动更新数据请求

一般的更新数据请求都是从一个实现了Location Services回调函数的Activity 或者Fragment发出来的。生成这个请求的过程是一个异步过程,它是在你请求到活动识别client的连接的时候开始的。当这个client连接上的时候,Location Services对调用你对onConnected()方法的实现。在这个方法里面,你可以发送更新数据的请求到Location Services;这个请求是异步的。一旦你生成这个请求,你就可以断开client的连接了。

这个过程会在下面的代码里面描述。

1.4)定义 Activity 和 Fragment

定义一个实现如下接口的FragmentActivity 或者Fragment

ConnectionCallbacks

  • 实现当client连接上或者断开连接时Location Services 调用的方法。

OnConnectionFailedListener

  • 实现当client连接出现错误时Location Services 调用的方法。

例如:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. }

接下来,定义全局变量。为更新频率定义一个常量,为活动识别client 定义一个变量,为Location Services用来发送更新的PendingIntent添加一个变量:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. // Constants that define the activity detection interval
  5. public static final int MILLISECONDS_PER_SECOND = 1000;
  6. public static final int DETECTION_INTERVAL_SECONDS = 20;
  7. public static final int DETECTION_INTERVAL_MILLISECONDS =
  8. MILLISECONDS_PER_SECOND * DETECTION_INTERVAL_SECONDS;
  9. ...
  10. /*
  11. * Store the PendingIntent used to send activity recognition events
  12. * back to the app
  13. */
  14. private PendingIntent mActivityRecognitionPendingIntent;
  15. // Store the current activity recognition client
  16. private ActivityRecognitionClient mActivityRecognitionClient;
  17. ...
  18. }

onCreate())方法里面,为活动识别client和PendingIntent赋值:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. @Override
  5. onCreate(Bundle savedInstanceState) {
  6. ...
  7. /*
  8. * Instantiate a new activity recognition client. Since the
  9. * parent Activity implements the connection listener and
  10. * connection failure listener, the constructor uses "this"
  11. * to specify the values of those parameters.
  12. */
  13. mActivityRecognitionClient =
  14. new ActivityRecognitionClient(mContext, this, this);
  15. /*
  16. * Create the PendingIntent that Location Services uses
  17. * to send activity recognition updates back to this app.
  18. */
  19. Intent intent = new Intent(
  20. mContext, ActivityRecognitionIntentService.class);
  21. /*
  22. * Return a PendingIntent that starts the IntentService.
  23. */
  24. mActivityRecognitionPendingIntent =
  25. PendingIntent.getService(mContext, 0, intent,
  26. PendingIntent.FLAG_UPDATE_CURRENT);
  27. ...
  28. }
  29. ...
  30. }

1.5)开启请求进程

定义一个请求活动识别更新的方法。在这个方法里面,请求到Location Services的连接。你可以在activity的任何地方调用这个方法;这个方法是用来开启请求更新数据的方法链。

为了避免在你的第一个请求结束之前开启第二个请求时出现竞争的情况,你可以定义一个boolean标志位来记录当前请求的状态。在开始请求的时候设置标志位值为true ,在请求结束的时候设置标志位为false

下面的代码展示了如何开始一个更新请求:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. // Global constants
  5. ...
  6. // Flag that indicates if a request is underway.
  7. private boolean mInProgress;
  8. ...
  9. @Override
  10. onCreate(Bundle savedInstanceState) {
  11. ...
  12. // Start with the request flag set to false
  13. mInProgress = false;
  14. ...
  15. }
  16. ...
  17. /**
  18. * Request activity recognition updates based on the current
  19. * detection interval.
  20. *
  21. */
  22. public void startUpdates() {
  23. // Check for Google Play services
  24. if (!servicesConnected()) {
  25. return;
  26. }
  27. // If a request is not already underway
  28. if (!mInProgress) {
  29. // Indicate that a request is in progress
  30. mInProgress = true;
  31. // Request a connection to Location Services
  32. mActivityRecognitionClient.connect();
  33. //
  34. } else {
  35. /*
  36. * A request is already underway. You can handle
  37. * this situation by disconnecting the client,
  38. * re-setting the flag, and then re-trying the
  39. * request.
  40. */
  41. }
  42. }
  43. ...
  44. }

下面就实现了onConnected()方法。在这个方法里面,从Location Services请求活动识别更新。当Location Services 结束对client的连接过程然后调用onConnected()方法时,这个更新请求就会直接被调用:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. /*
  5. * Called by Location Services once the location client is connected.
  6. *
  7. * Continue by requesting activity updates.
  8. */
  9. @Override
  10. public void onConnected(Bundle dataBundle) {
  11. /*
  12. * Request activity recognition updates using the preset
  13. * detection interval and PendingIntent. This call is
  14. * synchronous.
  15. */
  16. mActivityRecognitionClient.requestActivityUpdates(
  17. DETECTION_INTERVAL_MILLISECONDS,
  18. mActivityRecognitionPendingIntent);
  19. /*
  20. * Since the preceding call is synchronous, turn off the
  21. * in progress flag and disconnect the client
  22. */
  23. mInProgress = false;
  24. mActivityRecognitionClient.disconnect();
  25. }
  26. ...
  27. }

1.6)处理断开连接

在某些情况下,Location Services可能会在你调用disconnect())方法之前断开与活动识别client的连接。为了处理这种情况,实现onDisconnected())方法即可。在这个方法里面,设置请求标志位来表示这个请求是否有效,并根据这个标志位来删除client:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. /*
  5. * Called by Location Services once the activity recognition
  6. * client is disconnected.
  7. */
  8. @Override
  9. public void onDisconnected() {
  10. // Turn off the request flag
  11. mInProgress = false;
  12. // Delete the client
  13. mActivityRecognitionClient = null;
  14. }
  15. ...
  16. }

1.7)处理连接错误

在处理正常的回调函数之外,你还得提供一个回调函数来处理连接出现错误的情况。这个回调函数重用了前面在检查Google Play service的时候用到的DialogFragment类。它还可以重用之前在onActivityResult()方法里用来接收当用户和错误对话框交互时产生的结果用到的代码。下面的代码展示了如何实现回调函数:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks,
  3. OnConnectionFailedListener,
  4. OnAddGeofencesResultListener {
  5. ...
  6. // Implementation of OnConnectionFailedListener.onConnectionFailed
  7. @Override
  8. public void onConnectionFailed(ConnectionResult connectionResult) {
  9. // Turn off the request flag
  10. mInProgress = false;
  11. /*
  12. * If the error has a resolution, start a Google Play services
  13. * activity to resolve it.
  14. */
  15. if (connectionResult.hasResolution()) {
  16. try {
  17. connectionResult.startResolutionForResult(
  18. this,
  19. CONNECTION_FAILURE_RESOLUTION_REQUEST);
  20. } catch (SendIntentException e) {
  21. // Log the error
  22. e.printStackTrace();
  23. }
  24. // If no resolution is available, display an error dialog
  25. } else {
  26. // Get the error code
  27. int errorCode = connectionResult.getErrorCode();
  28. // Get the error dialog from Google Play services
  29. Dialog errorDialog = GooglePlayServicesUtil.getErrorDialog(
  30. errorCode,
  31. this,
  32. CONNECTION_FAILURE_RESOLUTION_REQUEST);
  33. // If Google Play services can provide an error dialog
  34. if (errorDialog != null) {
  35. // Create a new DialogFragment for the error dialog
  36. ErrorDialogFragment errorFragment =
  37. new ErrorDialogFragment();
  38. // Set the dialog in the DialogFragment
  39. errorFragment.setDialog(errorDialog);
  40. // Show the error dialog in the DialogFragment
  41. errorFragment.show(
  42. getSupportFragmentManager(),
  43. "Activity Recognition");
  44. }
  45. }
  46. }
  47. ...
  48. }

2)处理活动更新数据

为了处理Location Services每一个周期发送的Intent,你可以定义一个IntentService以及它的onHandleIntent()方法。 Location Services以Intent对象的形式返回活动识别更新数据,并使用了你在调用requestActivityUpdates())方法时产生的PendingIntent 。因为你为这个PendingIntent提供了一个单独的intent,那么接收这个intent的唯一组件就是IntentService了。

下面的代码展示了如何来检查活动识别更新数据。

2.1)定义一个IntentService

首先定义这个类以及它的onHandleIntent()方法:

  1. /**
  2. * Service that receives ActivityRecognition updates. It receives
  3. * updates in the background, even if the main Activity is not visible.
  4. */
  5. public class ActivityRecognitionIntentService extends IntentService {
  6. ...
  7. /**
  8. * Called when a new activity detection update is available.
  9. */
  10. @Override
  11. protected void onHandleIntent(Intent intent) {
  12. ...
  13. }
  14. ...
  15. }

接下啦,在intent里面检查数据。你可以从这个数据里面获取到所有可能的活动列表以及它们对应的概率。下面的代码展示了如何获取可能性最大的活动,活动对应的概率以及它的类型:

  1. public class ActivityRecognitionIntentService extends IntentService {
  2. ...
  3. @Override
  4. protected void onHandleIntent(Intent intent) {
  5. ...
  6. // If the incoming intent contains an update
  7. if (ActivityRecognitionResult.hasResult(intent)) {
  8. // Get the update
  9. ActivityRecognitionResult result =
  10. ActivityRecognitionResult.extractResult(intent);
  11. // Get the most probable activity
  12. DetectedActivity mostProbableActivity =
  13. result.getMostProbableActivity();
  14. /*
  15. * Get the probability that this activity is the
  16. * the user's actual activity
  17. */
  18. int confidence = mostProbableActivity.getConfidence();
  19. /*
  20. * Get an integer describing the type of activity
  21. */
  22. int activityType = mostProbableActivity.getType();
  23. String activityName = getNameFromType(activityType);
  24. /*
  25. * At this point, you have retrieved all the information
  26. * for the current update. You can display this
  27. * information to the user in a notification, or
  28. * send it to an Activity or Service in a broadcast
  29. * Intent.
  30. */
  31. ...
  32. } else {
  33. /*
  34. * This implementation ignores intents that don't contain
  35. * an activity update. If you wish, you can report them as
  36. * errors.
  37. */
  38. }
  39. ...
  40. }
  41. ...
  42. }

getNameFromType() 方法将活动类型转化成了对应的描述性字符串。在一个正式的应用中,你应该从资源文件中去获取字符串而不是使用拥有固定值的变量:

  1. public class ActivityRecognitionIntentService extends IntentService {
  2. ...
  3. /**
  4. * Map detected activity types to strings
  5. *@param activityType The detected activity type
  6. *@return A user-readable name for the type
  7. */
  8. private String getNameFromType(int activityType) {
  9. switch(activityType) {
  10. case DetectedActivity.IN_VEHICLE:
  11. return "in_vehicle";
  12. case DetectedActivity.ON_BICYCLE:
  13. return "on_bicycle";
  14. case DetectedActivity.ON_FOOT:
  15. return "on_foot";
  16. case DetectedActivity.STILL:
  17. return "still";
  18. case DetectedActivity.UNKNOWN:
  19. return "unknown";
  20. case DetectedActivity.TILTING:
  21. return "tilting";
  22. }
  23. return "unknown";
  24. }
  25. ...
  26. }

2.2)在manifest文件里面添加IntentService

为了让系统识别这个IntentService,你需要在应用的manifest文件里面添加<service>标签:

  1. <service
  2. android:name="com.example.android.location.ActivityRecognitionIntentService"
  3. android:label="@string/app_name"
  4. android:exported="false">
  5. </service>

注意你不必为这个服务去设置特定的intent filters,因为它只接受特定的intent。定义Activity和Fragment这一段已经描述了活动更新intent是如何被创建的。

3)停止活动识别更新

停止活动识别更新的过程与开启活动识别更新的过程类似,只要将调用的方法removeActivityUpdates()换成requestActivityUpdates()即可。

停止更新的过程使用了你在添加请求更新时使用过的几个方法,开始的时候要为两种操作定义请求类型:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. public enum REQUEST_TYPE {START, STOP}
  5. private REQUEST_TYPE mRequestType;
  6. ...
  7. }

更改开始请求活动识别更新的代码,在里面使用 START 请求参数:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. public void startUpdates() {
  5. // Set the request type to START
  6. mRequestType = REQUEST_TYPE.START;
  7. /*
  8. * Test for Google Play services after setting the request type.
  9. * If Google Play services isn't present, the proper request type
  10. * can be restarted.
  11. */
  12. if (!servicesConnected()) {
  13. return;
  14. }
  15. ...
  16. }
  17. ...
  18. public void onConnected(Bundle dataBundle) {
  19. switch (mRequestType) {
  20. case START :
  21. /*
  22. * Request activity recognition updates using the
  23. * preset detection interval and PendingIntent.
  24. * This call is synchronous.
  25. */
  26. mActivityRecognitionClient.requestActivityUpdates(
  27. DETECTION_INTERVAL_MILLISECONDS,
  28. mActivityRecognitionPendingIntent);
  29. break;
  30. ...
  31. /*
  32. * An enum was added to the definition of REQUEST_TYPE,
  33. * but it doesn't match a known case. Throw an exception.
  34. */
  35. default :
  36. throw new Exception("Unknown request type in onConnected().");
  37. break;
  38. }
  39. ...
  40. }
  41. ...
  42. }

3.1)开始请求停止更新

定义一个方法来请求停止活动识别更新。在这个方法里面,设置号请求类型,然后向Location Services发起连接。接着你就可以在activity里面的任何地方调用这个方法了。这样做的目的就是开启停止活动更新的方法链:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. /**
  5. * Turn off activity recognition updates
  6. *
  7. */
  8. public void stopUpdates() {
  9. // Set the request type to STOP
  10. mRequestType = REQUEST_TYPE.STOP;
  11. /*
  12. * Test for Google Play services after setting the request type.
  13. * If Google Play services isn't present, the request can be
  14. * restarted.
  15. */
  16. if (!servicesConnected()) {
  17. return;
  18. }
  19. // If a request is not already underway
  20. if (!mInProgress) {
  21. // Indicate that a request is in progress
  22. mInProgress = true;
  23. // Request a connection to Location Services
  24. mActivityRecognitionClient.connect();
  25. //
  26. } else {
  27. /*
  28. * A request is already underway. You can handle
  29. * this situation by disconnecting the client,
  30. * re-setting the flag, and then re-trying the
  31. * request.
  32. */
  33. }
  34. ...
  35. }
  36. ...
  37. }

onConnected()方法里面,如果请求参数类型是 STOP,则调用 removeActivityUpdates()方法。将你之前用来开启更新进程的PendingIntent作为一个参数传给removeActivityUpdates()方法:

  1. public class MainActivity extends FragmentActivity implements
  2. ConnectionCallbacks, OnConnectionFailedListener {
  3. ...
  4. public void onConnected(Bundle dataBundle) {
  5. switch (mRequestType) {
  6. ...
  7. case STOP :
  8. mActivityRecognitionClient.removeActivityUpdates(
  9. mActivityRecognitionPendingIntent);
  10. break;
  11. ...
  12. }
  13. ...
  14. }
  15. ...
  16. }

你不需要改变你对onDisconnected()方法和onConnectionFailed()方法的实现,因为这些方法不依赖这些请求类型。

现在你已经拥有了一个实现了活动识别的应用的基本架构了。你还可以与其他几个基于地理位置的特征进行结合。