HomeSort by relevance Sort by last modified time
    Searched refs:softKey (Results 1 - 4 of 4) sorted by null

  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboardView.java 62 private SoftKey mSoftKeyDown;
212 public SoftKey onKeyPress(int x, int y,
217 SoftKey newKey = mSoftKeyboard.mapToKey(x, y);
318 public SoftKey onKeyRelease(int x, int y) {
342 public SoftKey onKeyMove(int x, int y) {
415 List<SoftKey> softKeys = keyRow.mSoftKeys;
418 SoftKey softKey = softKeys.get(i);
419 if (SoftKeyType.KEYTYPE_ID_NORMAL_KEY == softKey.mKeyType.mKeyTypeId) {
424 drawSoftKey(canvas, softKey, keyXMargin, keyYMargin)
    [all...]
XmlKeyboardLoader.java 411 SoftKey softKey = getSoftKey(xrp, attrKey);
412 if (null == softKey) return null;
413 mSkbTemplate.addDefaultKey(keyId, softKey);
439 SoftKey softKey = null;
544 softKey = new SoftKey();
549 softKey.setKeyAttribute(keyCode, labelArr[i],
552 softKey.setKeyType(mSkbTemplat
    [all...]
SkbTemplate.java 41 SoftKey softKey;
177 public void addDefaultKey(int keyId, SoftKey softKey) {
178 if (null == softKey) return;
182 keyRecord.softKey = softKey;
193 public SoftKey getDefaultKey(int keyId) {
203 return keyRecord.softKey;
SoftKeyboard.java 182 keyRow.mSoftKeys = new ArrayList<SoftKey>();
186 public boolean addSoftKey(SoftKey softKey) {
190 List<SoftKey> softKeys = keyRow.mSoftKeys;
192 softKey.setSkbCoreSize(mSkbCoreWidth, mSkbCoreHeight);
193 softKeys.add(softKey);
194 if (softKey.mTopF < keyRow.mTopF) {
195 keyRow.mTopF = softKey.mTopF;
197 if (softKey.mBottomF > keyRow.mBottomF) {
198 keyRow.mBottomF = softKey.mBottomF
    [all...]

Completed in 59 milliseconds