Home | History | Annotate | Download | only in calendar

Lines Matching defs:intent

31 import android.content.Intent;
142 Intent intent = getIntent();
143 if (intent != null) {
144 Uri uri = intent.getData();
221 // Send intent to calendar app
224 intent = new Intent(Intent.ACTION_VIEW, calendarUri);
225 intent.setClass(this, EventInfoActivity.class);
226 intent.putExtra(EXTRA_EVENT_BEGIN_TIME, startMillis);
227 intent.putExtra(EXTRA_EVENT_END_TIME, endMillis);
229 intent.putExtra(ATTENDEE_STATUS, attendeeStatus);
231 startActivity(intent);
240 // Can't handle the intent. Pass it on to the next Activity.
242 startNextMatchingActivity(intent);