Guest User

Untitled

a guest
May 16th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //create an intent to open the event details activity
  2. Intent intent = new Intent(getApplicationContext(), EventDetail.class);
  3.  
  4. //put together the PendingIntent
  5. PendingIntent pendingIntent =
  6. PendingIntent.getActivity(getApplicationContext(), 1, intent, FLAG_UPDATE_CURRENT);
Add Comment
Please, Sign In to add comment