Advertisement
kernel_memory_dump

Untitled

Apr 10th, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public void metoda1 (View element) {
  2. // CTRL + SHIFT + O
  3. // da li je kliknuto na button?
  4. // BUTTON JE DETE OD VIEW !!!!
  5. // ako jeste instanceof ce vratiti true
  6. // tada znamo da imamo button!
  7.  
  8. if (element instanceof Button){
  9. Button elementKaoButton = (Button) element;
  10. Toast.makeText(getApplicationContext(),elementKaoButton.getText(), Toast.LENGTH_LONG).show();
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement