Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. @Override
  2. public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
  3.  
  4. InputConnection connection = super.onCreateInputConnection(outAttrs);
  5.  
  6. if ((outAttrs.inputType & InputType.TYPE_CLASS_NUMBER) == InputType.TYPE_CLASS_NUMBER)
  7. {
  8. outAttrs.inputType |= InputType.TYPE_NUMBER_FLAG_DECIMAL;
  9. }
  10.  
  11. return connection;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement