On android when I use a Textfield, after the user focuses on the field it brings up the soft keyboard. The problem is when the soft keyboard comes up it resizes all of the layout items on my screen. I have attempted to solve the issue by putting the following into tiapp.xml...
<android xmlns:android="http://schemas.android.com/apk/res/android"> <manifest> <activity android:windowSoftInputMode="adjustPan" android:name="Broken{(-_-)}App"> </activity> </manifest> </android>but this didn't solve the issue. Does anyone know of a fix for this that will cause the keyboard to overlay the layout, like it does on iOS, rather than resize everything? I would imagine it is a simple flag that needs to be set, I just cant seem to find it...