Home | History | Annotate | Download | only in alerts

Lines Matching defs:AlertActivity

53 public class AlertActivity extends Activity implements OnClickListener {
54 private static final String TAG = "AlertActivity";
180 AlertActivity alertActivity = AlertActivity.this;
181 Cursor cursor = alertActivity.getItemForView(view);
184 long eventId = cursor.getLong(AlertActivity.INDEX_EVENT_ID);
185 long startMillis = cursor.getLong(AlertActivity.INDEX_BEGIN);
192 long endMillis = cursor.getLong(AlertActivity.INDEX_END);
193 Intent eventIntent = AlertUtils.buildEventViewIntent(AlertActivity.this, eventId,
197 TaskStackBuilder.create(AlertActivity.this).addParentStack(EventInfoActivity.class)
200 alertActivity.startActivity(eventIntent);
203 alertActivity.finish();
249 AlertActivity.this.finish();