Guest User

Untitled

a guest
Jan 20th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. **keyboard event**
  2. CODE:
  3. public class MainActivity extends AppCompatActivity implements OnEditorActionListener
  4.  
  5. public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
  6. if (actionId == EditorInfo.IME_ACTION_DONE ||
  7. actionId == EditorInfo.IME_ACTION_UNSPECIFIED) {
  8. calculateAndDisplay();
  9. }
  10. return false;
  11. }
Add Comment
Please, Sign In to add comment