Home | History | Annotate | Download | only in com.example.android.wearable.geofencing

Lines Matching refs:intent

26 import android.content.Intent;
64 protected void onHandleIntent(Intent intent) {
65 if (ACTION_CHECK_IN.equals(intent.getAction())) {
72 } else if (!ACTION_DELETE_DATA_ITEM.equals(intent.getAction())) {
74 // (which causes an intent with ACTION_DELETE_DATA_ITEM).
75 Log.e(TAG, "Unrecognized action: " + intent.getAction());
82 Uri dataItemUri = intent.getData();
105 Intent confirmationActivity = new Intent(this, ConfirmationActivity.class)
106 .setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_NO_ANIMATION)