Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid : Soft Keyboard covering edit text up (adjustresize or adjustpan doesnt work)
    text
    copied!<p>Android Developers...</p> <p>I am new in developing android application. Thus, i really ask for a slow or details explanation about the problem: </p> <ol> <li><p>As the title, the soft keyboard always covering up the edit text. Non of the adjustresize or adjustpan works. </p></li> <li><p>I already search this problem, some people say to make the application not fullscreen. I already make my own simple theme which only consist: false still/ it doesnt work. Thus, how to disable full screen correctly?</p></li> <li><p>Some people say to use scrollview. Is it the only answer for it? because i would rather to use relative or linear layout.</p></li> <li><p>is there any simple answer to make the soft keyboard behaves well?</p></li> </ol> <p>Thank you so much for your help :D</p> <p>Ps:</p> <ol> <li>android:minSdkVersion="7"</li> <li>I am targetting for 2.1</li> <li>There is no such implicit theme on my manifest that state the theme is fullscreen mode.</li> <li>The awkward is: my login activity, the edittext is sliding up to make a room for the soft keyboard. but whenever this activity is called again, the sliding up for edittext does not working. </li> </ol> <p>this is my activity xml:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@color/bgcolor" android:orientation="vertical" &gt; &lt;TextView android:id="@+id/textTitle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="20dp" android:clickable="false" android:layout_gravity="center_horizontal" android:text="Transfer Tanpa Berita" /&gt; &lt;TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="30dp" android:text="No Rekening Tujuan: " /&gt; &lt;EditText android:id="@+id/transferNoRek" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:inputType="number" android:maxLength="20"&gt; &lt;/EditText&gt; &lt;TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="30dp" android:text="Jumlah: " /&gt; &lt;EditText android:id="@+id/transferJumlah" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:inputType="number" android:maxLength="20"&gt; &lt;/EditText&gt; &lt;TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingTop="30dp" android:text="No HP Tujuan: " /&gt; &lt;EditText android:id="@+id/transferNoHP" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:inputType="number" android:maxLength="15"&gt; &lt;/EditText&gt; &lt;Button android:id="@+id/transferButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:text="Kirim" android:onClick="validatePin"&gt; &lt;/Button&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