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

Lines Matching refs:intent

25 import android.content.Intent;
47 protected void onHandleIntent(Intent intent) {
49 Log.d(TAG, "onHandleIntent called with intent: " + intent);
51 String action = intent.getAction();
64 Intent dialogIntent = new Intent(this, SetTimerActivity.class);
65 dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
76 Intent intent = new Intent(Constants.ACTION_SHOW_ALARM, null, this,
78 PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent,
97 // Create an intent to restart a timer.
98 Intent restartIntent = new Intent(Constants.ACTION_RESTART_ALARM, null, this,