diff --git a/src/lime/_internal/backend/html5/HTML5Window.hx b/src/lime/_internal/backend/html5/HTML5Window.hx
index 99128f5d8..293e50613 100644
--- a/src/lime/_internal/backend/html5/HTML5Window.hx
+++ b/src/lime/_internal/backend/html5/HTML5Window.hx
@@ -1115,7 +1115,8 @@ class HTML5Window
if (textInput == null)
{
textInput = cast Browser.document.createElement('input');
- textInput.type = 'text';
+ // use password instead of text to avoid IME issues on Android
+ textInput.type = 'password';
textInput.style.position = 'absolute';
textInput.style.opacity = "0";
textInput.style.color = "transparent";