Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @Override
  2. public boolean onContextItemSelected(MenuItem item){
  3.  
  4. if (item.getTitle() == "Edit"){
  5. Intent editActivity = new Intent(ViewTodayActivity.this, EditScheduleActivity.class);
  6.  
  7. startActivity(editActivity);
  8. }
  9. return super.onContextItemSelected(item);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement