Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid keyboard changes height
    primarykey
    data
    text
    <p>I am building an app with HTML/CSS/JavaScript for the android. Now I have add a simple inlog field (for the purpose of the question I added a couple more fields). </p> <p><a href="http://i50.tinypic.com/kbsk5f.png" rel="nofollow">no keyboard</a></p> <p>When I want to fill in the form I just focus on the field and my onscreen keyboards of android gets added to the screen.</p> <p>So far so good, but when I want to scroll to the submit button there is a problem. As you could have seen in the first picture there was a "nice" submit button, and when I want to scroll I can't reach it.</p> <p><a href="http://i47.tinypic.com/244ek8z.png" rel="nofollow">the farest I could reach</a></p> <p><strong>Anser to question</strong></p> <p>The problem seems to be fixed, after just "giving up" I looked into the AndroidManifast.xml and start messing around what everything ment.</p> <pre><code>&lt;application android:icon ="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.FullScreen"&gt; </code></pre> <p>Since I just began I just started messing arround, and foud the problem lay with the androud:theme.</p> <p>After removing it, you will get your webpage into a wrapper, to fix this use</p> <pre><code>&lt;application android:icon ="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"&gt; </code></pre> <p>Using this solves the problem, except this also means that the status bar of android will be shown.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload