Note that there are some explanatory texts on larger screens.

plurals
  1. POUnable to scroll Up completely in a scrollView when Software Keyboard is up
    text
    copied!<p>I am developing a full screen Android application, and here is the weird problem I am facing: I am unable to scroll the scrollView completely when the software keyboard is up.No problem if the activity is <strong>not a full screen activity</strong> (I checked).Attached is the xml code snippet and iamges:</p> <p>Normally viewing the activity:</p> <p><a href="https://docs.google.com/file/d/0B_RJcrMK6rlORXRDc1UxMFRYSFE/edit?usp=sharing" rel="nofollow">https://docs.google.com/file/d/0B_RJcrMK6rlORXRDc1UxMFRYSFE/edit?usp=sharing</a></p> <p>When the keyboard is UP:</p> <p><a href="https://docs.google.com/file/d/0B_RJcrMK6rlOenhZeHFCTEhFZ1U/edit?usp=sharing" rel="nofollow">https://docs.google.com/file/d/0B_RJcrMK6rlOenhZeHFCTEhFZ1U/edit?usp=sharing</a></p> <p>I am filling the Table Layout dynamically from Database rows</p> <p>Here is the xml code:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:fillViewport="true"&gt; &lt;RelativeLayout android:id="@+id/RelativeLayout1" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" &gt; &lt;TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:text="Spent For :" android:textAppearance="?android:attr/textAppearanceLarge" /&gt; &lt;TableLayout android:id="@+id/TableLayout1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/textView1" &gt; &lt;/TableLayout&gt; &lt;TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/TableLayout1" android:text="Given By :" android:textAppearance="?android:attr/textAppearanceLarge" /&gt; &lt;TableLayout android:id="@+id/TableLayout2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/textView2" &gt; &lt;/TableLayout&gt; &lt;TextView android:id="@+id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/TableLayout2" android:text="Enter a description :" android:textAppearance="?android:attr/textAppearanceLarge" /&gt; &lt;EditText android:id="@+id/editText1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/textView3" android:ems="10" &gt; &lt;requestFocus /&gt; &lt;/EditText&gt; &lt;Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/editText1" android:text="Button" /&gt; &lt;/RelativeLayout&gt; &lt;/ScrollView&gt; </code></pre>
 

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