Advertisement
minafaw3

CustomKeyboard

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