Note that there are some explanatory texts on larger screens.

plurals
  1. POPage scroll when soft keyboard popped up
    primarykey
    data
    text
    <p>I have a <code>&lt;ScrollView&gt;</code> layout:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/my_scrollview" android:layout_width="fill_parent" android:layout_height="wrap_content" &gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" &gt; &lt;EditText android:id="@+id/input_one" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" &gt; &lt;EditText android:id="@+id/input_two" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" &gt; &lt;EditText android:id="@+id/input_three" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_gravity="center" android:inputType="number" &gt; &lt;Button android:id="@+id/ok_btn" android:layout_width="200dp" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="20dp" android:text="@string/ok_str" /&gt; &lt;/LinearLayout&gt; &lt;/ScrollView&gt; </code></pre> <p>As you see above, the simple layout consists of three input fields and an "Ok" button.</p> <p>I run my app with the above layout, when I tap on the 1st input field (<code>@+id/input_one</code>), the soft keyboard will pop up from the bottom of the screen, it <strong>hides</strong> the 3rd input field and the "Ok" button. </p> <p>Since I use <code>&lt;ScrollView&gt;</code> , I thought I can scroll the page up in order to see the 3rd input field and "Ok" button which are <strong>hidden</strong> by the soft keyboard, <strong>but the page is not scrollable</strong>. Why? How to get rid of it? <strong>basically, i would like to see every input fields and "Ok" button even the soft keyboard popped up.</strong></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.
 

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