Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid: Keyboard overlaps with the EditText (with printscreens)
    text
    copied!<p>I have an EditText (that the user can type <em>numbers</em> in), so when the user clicks on the EditText text box a keyboard with numbers is opened.</p> <p><img src="https://i.stack.imgur.com/ximcl.png" alt="This is how it looks when the text box is clicked"></p> <p>as you can see the keyboard hides a small part of the text box.</p> <p>But when I press a key, for example, 0, it looks ok. <img src="https://i.stack.imgur.com/JM8sF.png" alt="This is how it looks after after clicking 0"></p> <p>Is there anything I can do (besides putting the EditText higher) so it will looks like it does in the second picture?</p> <p><strong>Edit:</strong> the .xml code:</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:weightSum="1"&gt; &lt;RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;LinearLayout android:layout_width="wrap_content" android:orientation="vertical" android:layout_height="wrap_content" android:id="@+id/linearLayout1" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_alignParentRight="true"&gt; &lt;android.widget.CheckedTextView android:id="@+id/checkedTextView1" android:layout_height="wrap_content" android:layout_width="fill_parent" android:textSize="17sp" android:text="@string/toString"&gt;&lt;/android.widget.CheckedTextView&gt; &lt;AutoCompleteTextView android:layout_height="wrap_content" android:id="@+id/autoCompleteTextView1" android:layout_width="fill_parent" android:text="@string/emptyString" android:textSize="17sp" android:gravity="top|left" android:minHeight="62dp"&gt; &lt;requestFocus&gt;&lt;/requestFocus&gt; &lt;/AutoCompleteTextView&gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/linearLayout2"&gt; &lt;Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:layout_weight="0.33333333333" android:text="@string/contactsString" android:textSize="17sp" android:id="@+id/contactsButton"&gt;&lt;/Button&gt; &lt;Button android:layout_weight="0.33333333333" android:layout_height="wrap_content" android:text="@string/groupsString" android:layout_width="fill_parent" android:id="@+id/groupsButton" android:textSize="17sp"&gt;&lt;/Button&gt; &lt;Button android:layout_weight="0.33333333333" android:layout_height="wrap_content" android:text="@string/favouritesString" android:layout_width="fill_parent" android:id="@+id/button3" android:textSize="17sp"&gt;&lt;/Button&gt; &lt;/LinearLayout&gt; &lt;TextView android:id="@+id/textView1" android:text="@string/messageString" android:layout_height="wrap_content" android:textSize="17sp" android:layout_width="fill_parent"&gt;&lt;/TextView&gt; &lt;EditText android:layout_height="wrap_content" android:id="@+id/editText1" android:layout_width="fill_parent" android:gravity="top|left" android:minHeight="105dp"&gt;&lt;/EditText&gt; &lt;TextView android:id="@+id/textView2" android:text="@string/repetition" android:layout_height="wrap_content" android:layout_width="fill_parent" android:textSize="17sp"&gt;&lt;/TextView&gt; &lt;Spinner android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/spinner"&gt;&lt;/Spinner&gt; &lt;LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout3" android:layout_width="fill_parent"&gt; &lt;ImageView android:src="@drawable/button_time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/imageView1" android:layout_weight="0.1"&gt;&lt;/ImageView&gt; &lt;EditText android:layout_height="wrap_content" android:id="@+id/timeET" android:inputType="number" android:layout_width="wrap_content" android:layout_weight="0.4"&gt;&lt;/EditText&gt; &lt;ImageView android:src="@drawable/button_date" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/imageView2" android:layout_weight="0.1"&gt;&lt;/ImageView&gt; &lt;EditText android:layout_height="wrap_content" android:id="@+id/dateET" android:inputType="number" android:layout_width="wrap_content" android:layout_weight="0.4" android:layout_marginRight="3dp"&gt;&lt;/EditText&gt; &lt;/LinearLayout&gt; &lt;RelativeLayout android:id="@+id/relativeLayout2" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/linearLayout4" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_alignParentLeft="true"&gt; &lt;Button android:layout_weight="0.5" android:layout_height="wrap_content" android:text="@string/button_ok" android:layout_width="fill_parent" android:id="@+id/button4" android:textSize="17sp"&gt;&lt;/Button&gt; &lt;Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/button5" android:layout_weight="0.5" android:text="@string/button_cancel" android:textSize="17sp"&gt;&lt;/Button&gt; &lt;/LinearLayout&gt; &lt;/RelativeLayout&gt; &lt;/LinearLayout&gt; &lt;/RelativeLayout&gt; &lt;/LinearLayout&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