Home
last modified time | relevance | path

Searched refs:LeanbackKeyboardView (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/
DLeanbackKeyboardController.java371 case LeanbackKeyboardView.KEYCODE_CAPS_LOCK: in handleCommitKeyboardKey()
382 case LeanbackKeyboardView.KEYCODE_DISMISS_MINI_KEYBOARD: in handleCommitKeyboardKey()
385 case LeanbackKeyboardView.KEYCODE_LEFT: in handleCommitKeyboardKey()
388 case LeanbackKeyboardView.KEYCODE_RIGHT: in handleCommitKeyboardKey()
394 case LeanbackKeyboardView.ASCII_SPACE: in handleCommitKeyboardKey()
398 case LeanbackKeyboardView.ASCII_PERIOD: in handleCommitKeyboardKey()
402 case LeanbackKeyboardView.KEYCODE_VOICE: in handleCommitKeyboardKey()
453 handleCommitKeyboardKey(LeanbackKeyboardView.ASCII_SPACE, null); in handleKeyDownEvent()
456 handleCommitKeyboardKey(LeanbackKeyboardView.KEYCODE_LEFT, null); in handleKeyDownEvent()
459 handleCommitKeyboardKey(LeanbackKeyboardView.KEYCODE_RIGHT, null); in handleKeyDownEvent()
[all …]
DLeanbackKeyboardContainer.java397 private LeanbackKeyboardView mMainKeyboardView;
414 private LeanbackKeyboardView mPrevView;
577 mMainKeyboardView = (LeanbackKeyboardView) mRootView.findViewById(R.id.main_keyboard); in LeanbackKeyboardContainer()
770 setShiftState(LeanbackKeyboardView.SHIFT_LOCKED); in onStartInputView()
772 setShiftState(LeanbackKeyboardView.SHIFT_ON); in onStartInputView()
774 setShiftState(LeanbackKeyboardView.SHIFT_OFF); in onStartInputView()
1042 LeanbackKeyboardView prevView = mPrevView; in setKbFocus()
1061 overestimateWidth = (focus.code != LeanbackKeyboardView.ASCII_SPACE); in setKbFocus()
1191 setShiftState(mMainKeyboardView.isShifted() ? LeanbackKeyboardView.SHIFT_OFF in onShiftClick()
1192 : LeanbackKeyboardView.SHIFT_ON); in onShiftClick()
[all …]
DLeanbackKeyboardView.java51 public class LeanbackKeyboardView extends FrameLayout { class
112 public LeanbackKeyboardView(Context context, AttributeSet attrs) { in LeanbackKeyboardView() method in LeanbackKeyboardView
117 .obtainStyledAttributes(attrs, R.styleable.LeanbackKeyboardView, 0, 0); in LeanbackKeyboardView()
/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/service/
DLeanbackImeService.java35 import com.android.inputmethod.leanback.LeanbackKeyboardView;
304 if (keyCode == LeanbackKeyboardView.ASCII_PERIOD) { in handleTextEntry()