Lines Matching full:link
20 <p>When the user gives focus to an editable text view such as an {@link android.widget.EditText}
24 from the {@link android.view.KeyEvent.Callback} interface, such as {@link
25 android.view.KeyEvent.Callback#onKeyDown onKeyDown()} and {@link
28 <p>Both the {@link
29 android.app.Activity} and {@link android.view.View} class implement the
30 {@link android.view.KeyEvent.Callback} interface, so you
34 <p class="note"><strong>Note:</strong> When handling keyboard events with the {@link
42 <p>To handle an individual key press, implement {@link
43 android.app.Activity#onKeyDown onKeyDown()} or {@link
45 use {@link android.app.Activity#onKeyUp onKeyUp()} if you want to be sure that you receive
46 only one event. If the user presses and holds the button, then {@link
77 query the {@link android.view.KeyEvent} that's passed to the callback method. Several methods
78 provide information about modifier keys such as {@link android.view.KeyEvent#getModifiers()}
79 and {@link android.view.KeyEvent#getMetaState()}. However, the simplest solution is to check whether
81 {@link android.view.KeyEvent#isShiftPressed()} and {@link android.view.KeyEvent#isCtrlPressed()}.
84 <p>For example, here's the {@link android.app.Activity#onKeyDown onKeyDown()} implementation