Home | History | Annotate | Download | only in keyboard

Lines Matching refs:KeyboardSwitchState

146             @Nonnull final KeyboardSwitchState toggleState) {
213 setKeyboard(KeyboardId.ELEMENT_ALPHABET, KeyboardSwitchState.OTHER);
222 setKeyboard(KeyboardId.ELEMENT_ALPHABET_MANUAL_SHIFTED, KeyboardSwitchState.OTHER);
231 setKeyboard(KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED, KeyboardSwitchState.OTHER);
240 setKeyboard(KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCKED, KeyboardSwitchState.OTHER);
249 setKeyboard(KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCK_SHIFTED, KeyboardSwitchState.OTHER);
258 setKeyboard(KeyboardId.ELEMENT_SYMBOLS, KeyboardSwitchState.OTHER);
267 setKeyboard(KeyboardId.ELEMENT_SYMBOLS_SHIFTED, KeyboardSwitchState.SYMBOLS_SHIFTED);
272 @Nonnull final KeyboardSwitchState toggleState) {
273 return settingsValues.mHasHardwareKeyboard && toggleState == KeyboardSwitchState.HIDDEN;
278 @Nonnull final KeyboardSwitchState toggleState) {
308 public enum KeyboardSwitchState {
316 KeyboardSwitchState(int keyboardId) {
321 public KeyboardSwitchState getKeyboardSwitchState() {
326 KeyboardSwitchState state;
328 return KeyboardSwitchState.HIDDEN;
330 return KeyboardSwitchState.EMOJI;
332 return KeyboardSwitchState.SYMBOLS_SHIFTED;
334 return KeyboardSwitchState.OTHER;
337 public void onToggleKeyboard(@Nonnull final KeyboardSwitchState toggleState) {
338 KeyboardSwitchState currentState = getKeyboardSwitchState();
346 if (toggleState == KeyboardSwitchState.EMOJI) {