Advertisement
kellykamay

Untitled

Feb 18th, 2014
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. @Override
  2.     public boolean onOptionsItemSelected(MenuItem item) {
  3.         switch (item.getItemId()) {
  4.         // action with ID action_refresh was selected
  5.         case R.id.action_refresh:
  6.           Toast.makeText(this, "Refresh selected", Toast.LENGTH_SHORT)
  7.               .show();
  8.           break;
  9.        
  10.         default:
  11.           break;
  12.         }
  13.  
  14.         return true;
  15.       }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement