Home | History | Annotate | Download | only in accessibility

Lines Matching refs:keyboard

35 import com.android.inputmethod.keyboard.Key;
36 import com.android.inputmethod.keyboard.Keyboard;
37 import com.android.inputmethod.keyboard.KeyboardView;
70 /** The current keyboard view. */
83 * Sets the keyboard view represented by this node provider.
85 * @param keyboardView The keyboard view to represent.
97 * Sets the keyboard represented by this node provider.
99 * @param keyboard The keyboard to represent.
101 public void setKeyboard(Keyboard keyboard) {
109 * @param key A key on the host keyboard view.
164 final Keyboard keyboard = mKeyboardView.getKeyboard();
165 final Key[] keys = keyboard.mKeys;
212 * Simulates a key press by injecting touch events into the keyboard view.
213 * This avoids the complexity of trackers and listeners within the keyboard.
305 * Assigns virtual view IDs to keyboard keys and populates the related maps.
308 final Keyboard keyboard = mKeyboardView.getKeyboard();
309 if (keyboard == null) {
315 final Key[] keys = keyboard.mKeys;