Guest User

Untitled

a guest
Dec 13th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo menuInfo) {
  2.  
  3. menu.add(0, 0, 0, "Ligar");
  4. menu.add(0, 1, 0, "Enviar SMS");
  5. menu.add(0, 2, 0, "Achar no Mapa");
  6. menu.add(0, 3, 0, "Navegar no Site");
  7. menu.add(0, 4, 0, "Deletar");
  8. menu.add(0, 5, 0, "Enviar E-mail");
  9.  
  10. }
  11.  
  12. public boolean onContextItemSelected(MenuItem item) {
  13.  
  14. if( item.getItemId() == 0 ) {
  15. // Faz algo
  16. }
  17. return super.onContextItemSelected(item);
  18.  
  19. }
Add Comment
Please, Sign In to add comment