Reputation: 1
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
Upvotes: 0
Views: 347
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
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