4
  1. I've tried all ion-textarea possibilities such as type="email" and so on, I can't make it work on all Android versions.

  2. I've installed cordova-plugin-ionic-keyboard, which shows the keyboard without suggestions (Image A). But when I tap the ion-textarea, the native keyboard shows instead (Image B).

How can I solve this, either disabling suggestions on the native keyboard or having the Cordova plugin replace the native keyboard for my ion-textarea, or maybe something else? Thanks!

Image A

Image B

2 Answers2

2

Finally, on my Pixel with Android 9 <ion-textarea inputmode="email"></ion-textarea> worked :).

0

Try autocomplete="off" tag

Up until at least Android 4.4 in cordova apps, the html5 attribute autocomplete="off" not have any effect. However on Android 6 the autocomplete="off" does work! So it depends on the Android version.

It does indeed work for most devices, but for Samsung devices it does not work as they use their own keyboard which doesn't respect html attributes for autocomplete.

source here

Kevin Dias
  • 1,043
  • 10
  • 28