Jonathan Henrique
Jonathan Henrique

Reputation: 1

When displaying the keyboard on Android, it hides my inputs

I’m having a problem: displaying the keyboard on Android, it hides my inputs making it difficult to fill out the form.

Framework front end FrameWork7 working with Apache Cordova

Descrição do problema.

Upvotes: 0

Views: 347

Answers (2)

Jonathan Henrique
Jonathan Henrique

Reputation: 1

finally I resolved "partially" my problem, I made the update of my framework (framework7 version 1.4 for version 2.0) and poft! problem solved.

Download version 2.0 https://github.com/framework7io/framework7/releases/tag/v2.0.2

Upvotes: 0

HyunJin
HyunJin

Reputation: 336

Your problem should be fixed by adding one line in your AndroidManifest.xml file inside your desired activity tag.
For example:

<activity
        android:name=".SomeActivity"
        android:theme="@style/Base.Theme.AppCompat.Light"
        android:windowSoftInputMode="adjustResize|stateHidden"/>

Upvotes: 1

Related Questions