Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/inputmethodservice/
DKeyboardView.java135 private int mCurrentKeyIndex = NOT_A_KEY; field in KeyboardView
846 int oldKeyIndex = mCurrentKeyIndex; in showPreview()
849 mCurrentKeyIndex = keyIndex; in showPreview()
852 if (oldKeyIndex != mCurrentKeyIndex) { in showPreview()
855 oldKey.onReleased(mCurrentKeyIndex == NOT_A_KEY); in showPreview()
860 if (mCurrentKeyIndex != NOT_A_KEY && keys.length > mCurrentKeyIndex) { in showPreview()
861 Key newKey = keys[mCurrentKeyIndex]; in showPreview()
863 invalidateKey(mCurrentKeyIndex); in showPreview()
869 if (oldKeyIndex != mCurrentKeyIndex && mShowPreview) { in showPreview()