Advertisement
minafaw3

keyboard code

Jun 16th, 2015
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.49 KB | None | 0 0
  1. import android.app.Activity;
  2. import android.inputmethodservice.Keyboard;
  3. import android.inputmethodservice.KeyboardView;
  4. import android.inputmethodservice.KeyboardView.OnKeyboardActionListener;
  5. import android.text.Editable;
  6. import android.text.InputType;
  7. import android.view.MotionEvent;
  8. import android.view.View;
  9. import android.view.View.OnClickListener;
  10. import android.view.View.OnFocusChangeListener;
  11. import android.view.View.OnTouchListener;
  12. import android.view.WindowManager;
  13. import android.view.inputmethod.InputMethodManager;
  14. import android.widget.EditText;
  15.  
  16.  
  17. public class CustomKeyboard {
  18.  
  19. /** A link to the KeyboardView that is used to render this CustomKeyboard. */
  20. private KeyboardView mKeyboardView;
  21. /** A link to the activity that hosts the {@link #mKeyboardView}. */
  22. private Activity mHostActivity;
  23.  
  24. /** The key (code) handler. */
  25. private OnKeyboardActionListener mOnKeyboardActionListener = new OnKeyboardActionListener() {
  26.  
  27. public final static int CodeDelete = -5; // Keyboard.KEYCODE_DELETE
  28. public final static int CodeCancel = -3; // Keyboard.KEYCODE_CANCEL
  29. public final static int CodePrev = 55000;
  30. public final static int CodeAllLeft = 55001;
  31. public final static int CodeLeft = 55002;
  32. public final static int CodeRight = 55003;
  33. public final static int CodeAllRight = 55004;
  34. public final static int CodeNext = 55005;
  35. public final static int CodeClear = 55006;
  36.  
  37. @Override
  38. public void onKey(int primaryCode, int[] keyCodes) {
  39. // NOTE We can say '<Key android:codes="49,50" ... >' in the xml
  40. // file; all codes come in keyCodes, the first in this list in
  41. // primaryCode
  42. // Get the EditText and its Editable
  43. View focusCurrent = mHostActivity.getWindow().getCurrentFocus();
  44. if (focusCurrent == null
  45. || focusCurrent.getClass() != EditText.class)
  46. return;
  47. EditText edittext = (EditText) focusCurrent;
  48. Editable editable = edittext.getText();
  49. int start = edittext.getSelectionStart();
  50. // Apply the key to the edittext
  51. if (primaryCode == CodeCancel) {
  52. hideCustomKeyboard();
  53. } else if (primaryCode == CodeDelete) {
  54. if (editable != null && start > 0)
  55. editable.delete(start - 1, start);
  56. } else if (primaryCode == CodeClear) {
  57. if (editable != null)
  58. editable.clear();
  59. } else if (primaryCode == CodeLeft) {
  60. if (start > 0)
  61. edittext.setSelection(start - 1);
  62. } else if (primaryCode == CodeRight) {
  63. if (start < edittext.length())
  64. edittext.setSelection(start + 1);
  65. } else if (primaryCode == CodeAllLeft) {
  66. edittext.setSelection(0);
  67. } else if (primaryCode == CodeAllRight) {
  68. edittext.setSelection(edittext.length());
  69. } else if (primaryCode == CodePrev) {
  70. View focusNew = edittext.focusSearch(View.FOCUS_BACKWARD);
  71. if (focusNew != null)
  72. focusNew.requestFocus();
  73. } else if (primaryCode == CodeNext) {
  74. View focusNew = edittext.focusSearch(View.FOCUS_FORWARD);
  75. if (focusNew != null)
  76. focusNew.requestFocus();
  77. } else { // insert character
  78. editable.insert(start, Character.toString((char) primaryCode));
  79. }
  80. }
  81.  
  82. @Override
  83. public void onPress(int arg0) {
  84. }
  85.  
  86. @Override
  87. public void onRelease(int primaryCode) {
  88. }
  89.  
  90. @Override
  91. public void onText(CharSequence text) {
  92. }
  93.  
  94. @Override
  95. public void swipeDown() {
  96. }
  97.  
  98. @Override
  99. public void swipeLeft() {
  100. }
  101.  
  102. @Override
  103. public void swipeRight() {
  104. }
  105.  
  106. @Override
  107. public void swipeUp() {
  108. }
  109. };
  110.  
  111. /**
  112. * Create a custom keyboard, that uses the KeyboardView (with resource id
  113. * <var>viewid</var>) of the <var>host</var> activity, and load the keyboard
  114. * layout from xml file <var>layoutid</var> (see {@link Keyboard} for
  115. * description). Note that the <var>host</var> activity must have a
  116. * <var>KeyboardView</var> in its layout (typically aligned with the bottom
  117. * of the activity). Note that the keyboard layout xml file may include key
  118. * codes for navigation; see the constants in this class for their values.
  119. * Note that to enable EditText's to use this custom keyboard, call the
  120. * {@link #registerEditText(int)}.
  121. *
  122. * @param host
  123. * The hosting activity.
  124. * @param viewid
  125. * The id of the KeyboardView.
  126. * @param layoutid
  127. * The id of the xml file containing the keyboard layout.
  128. */
  129. public CustomKeyboard(Activity host, int viewid, int layoutid) {
  130. mHostActivity = host;
  131. mKeyboardView = (KeyboardView) mHostActivity.findViewById(viewid);
  132. mKeyboardView.setKeyboard(new Keyboard(mHostActivity, layoutid));
  133. mKeyboardView.setPreviewEnabled(false); // NOTE Do not show the preview
  134. // balloons
  135. mKeyboardView.setOnKeyboardActionListener(mOnKeyboardActionListener);
  136. // Hide the standard keyboard initially
  137. mHostActivity.getWindow().setSoftInputMode(
  138. WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
  139. }
  140.  
  141. /** Returns whether the CustomKeyboard is visible. */
  142. public boolean isCustomKeyboardVisible() {
  143. return mKeyboardView.getVisibility() == View.VISIBLE;
  144. }
  145.  
  146. /**
  147. * Make the CustomKeyboard visible, and hide the system keyboard for view v.
  148. */
  149. public void showCustomKeyboard(View v) {
  150. mKeyboardView.setVisibility(View.VISIBLE);
  151. mKeyboardView.setEnabled(true);
  152. if (v != null)
  153. ((InputMethodManager) mHostActivity
  154. .getSystemService(Activity.INPUT_METHOD_SERVICE))
  155. .hideSoftInputFromWindow(v.getWindowToken(), 0);
  156. }
  157.  
  158. /** Make the CustomKeyboard invisible. */
  159. public void hideCustomKeyboard() {
  160. mKeyboardView.setVisibility(View.GONE);
  161. mKeyboardView.setEnabled(false);
  162. }
  163.  
  164. /**
  165. * Register <var>EditText<var> with resource id <var>resid</var> (on the
  166. * hosting activity) for using this custom keyboard.
  167. *
  168. * @param resid
  169. * The resource id of the EditText that registers to the custom
  170. * keyboard.
  171. */
  172. public void registerEditText(int resid) {
  173. // Find the EditText 'resid'
  174. EditText edittext = (EditText) mHostActivity.findViewById(resid);
  175. // Make the custom keyboard appear
  176. edittext.setOnFocusChangeListener(new OnFocusChangeListener() {
  177. // NOTE By setting the on focus listener, we can show the custom
  178. // keyboard when the edit box gets focus, but also hide it when the
  179. // edit box loses focus
  180. @Override
  181. public void onFocusChange(View v, boolean hasFocus) {
  182. if (hasFocus)
  183. showCustomKeyboard(v);
  184. else
  185. hideCustomKeyboard();
  186. }
  187. });
  188. edittext.setOnClickListener(new OnClickListener() {
  189. // NOTE By setting the on click listener, we can show the custom
  190. // keyboard again, by tapping on an edit box that already had focus
  191. // (but that had the keyboard hidden).
  192. @Override
  193. public void onClick(View v) {
  194. showCustomKeyboard(v);
  195. }
  196. });
  197. // Disable standard keyboard hard way
  198. // NOTE There is also an easy way:
  199. // 'edittext.setInputType(InputType.TYPE_NULL)' (but you will not have a
  200. // cursor, and no 'edittext.setCursorVisible(true)' doesn't work )
  201. edittext.setOnTouchListener(new OnTouchListener() {
  202. @Override
  203. public boolean onTouch(View v, MotionEvent event) {
  204. EditText edittext = (EditText) v;
  205. int inType = edittext.getInputType(); // Backup the input type
  206. edittext.setInputType(InputType.TYPE_NULL); // Disable standard
  207. // keyboard
  208. edittext.onTouchEvent(event); // Call native handler
  209. edittext.setInputType(inType); // Restore input type
  210. return true; // Consume touch event
  211. }
  212. });
  213. // Disable spell check (hex strings look like words to Android)
  214. edittext.setInputType(edittext.getInputType()
  215. | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
  216. }
  217.  
  218. }
  219.  
  220. // NOTE How can we change the background color of some keys (like the
  221. // shift/ctrl/alt)?
  222. // NOTE What does android:keyEdgeFlags do/mean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement