MainActivity.java 442 B

12345678910111213141516171819
  1. //% IMPORTS
  2. import autosuggest.CustomInputConnection;
  3. //% END
  4. //% QUAD_SURFACE_ON_CREATE_INPUT_CONNECTION
  5. // Needed to fix error: unreachable statement in Java
  6. if (true) {
  7. outAttrs.inputType = EditorInfo.TYPE_CLASS_TEXT
  8. | EditorInfo.TYPE_TEXT_FLAG_AUTO_CORRECT;
  9. outAttrs.imeOptions = EditorInfo.IME_FLAG_NO_FULLSCREEN
  10. | EditorInfo.IME_ACTION_NONE;
  11. return new CustomInputConnection(this, outAttrs);
  12. }
  13. //% END