Home
last modified time | relevance | path

Searched refs:mInputView (Results 1 – 2 of 2) sorted by relevance

/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
DSoftKeyboard.java68 private LatinKeyboardView mInputView; field in SoftKeyboard
146 mInputView = (LatinKeyboardView) getLayoutInflater().inflate( in onCreateInputView()
148 mInputView.setOnKeyboardActionListener(this); in onCreateInputView()
150 return mInputView; in onCreateInputView()
157 mInputView.setKeyboard(nextKeyboard); in setLatinKeyboard()
281 if (mInputView != null) { in onFinishInput()
282 mInputView.closing(); in onFinishInput()
290 mInputView.closing(); in onStartInputView()
292 mInputView.setSubtypeOnSpaceKey(subtype); in onStartInputView()
297 mInputView.setSubtypeOnSpaceKey(subtype); in onCurrentInputMethodSubtypeChanged()
[all …]
/development/samples/AutofillKeyboard/src/com/example/android/autofillkeyboard/
DAutofillImeService.java69 private InputView mInputView; field in AutofillImeService
111 mInputView = (InputView) LayoutInflater.from(this).inflate(R.layout.input_view, null); in onCreateInputView()
113 mInputView.addView(mKeyboard.inflateKeyboardView(LayoutInflater.from(this), mInputView)); in onCreateInputView() local
114 mSuggestionStrip = mInputView.findViewById(R.id.suggestion_strip); in onCreateInputView()
115 mPinnedSuggestionsStart = mInputView.findViewById(R.id.pinned_suggestions_start); in onCreateInputView()
116 mPinnedSuggestionsEnd = mInputView.findViewById(R.id.pinned_suggestions_end); in onCreateInputView()
117 mScrollableSuggestionsClip = mInputView.findViewById(R.id.scrollable_suggestions_clip); in onCreateInputView()
118 mScrollableSuggestions = mInputView.findViewById(R.id.scrollable_suggestions); in onCreateInputView()
119 return mInputView; in onCreateInputView()
174 if (mInputView != null && mDelayedDeletion == null) { in scheduleDelayedDeletion()
[all …]