Note that there are some explanatory texts on larger screens.

plurals
  1. POIssue need to press the back to input in android
    primarykey
    data
    text
    <p>I have registration screen in android. When user start to type then to enter the value in next EditText then need to press the back then type and so on.</p> <p>Please help me such user need not to press back button many times to input.</p> <pre><code>&lt;ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@android:color/white" &gt; &lt;RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginLeft="20dp" android:layout_marginRight="20dp" android:layout_gravity="center_horizontal" android:gravity="center"&gt; &lt;EditText android:id="@+id/senderphoneNumber" android:layout_width="fill_parent" android:layout_height="50dip" android:layout_marginTop="30dp" android:gravity="center" android:hint="SENDER PHONE NUMBER" android:ellipsize="start" android:inputType="number"/&gt; &lt;EditText android:id="@+id/phoneNumber" android:layout_width="fill_parent" android:layout_height="50dip" android:layout_marginTop="20dp" android:gravity="center" android:hint="RECIEVER PHONE NUMBER" android:ellipsize="start" android:inputType="number" android:layout_below="@id/senderphoneNumber"/&gt; &lt;EditText android:id="@+id/messageText" android:layout_width="fill_parent" android:layout_height="50dip" android:layout_marginTop="20dp" android:gravity="center" android:hint="TEXT MESSAGE" android:layout_below="@id/phoneNumber" android:imeOptions="actionNext"/&gt; &lt;EditText android:id="@+id/mmsCentralURL" android:layout_width="fill_parent" android:layout_height="50dip" android:layout_marginTop="20dp" android:gravity="center" android:hint="MMS CENTRAL URL" android:layout_below="@id/messageText" android:imeOptions="actionNext"/&gt; &lt;EditText android:id="@+id/proxyURL" android:layout_width="fill_parent" android:layout_height="50dip" android:layout_marginTop="20dp" android:gravity="center" android:hint="MMS PROXY" android:layout_below="@id/mmsCentralURL" android:imeOptions="actionNext"/&gt; &lt;EditText android:id="@+id/port" android:layout_width="fill_parent" android:layout_height="50dip" android:layout_marginTop="20dp" android:gravity="center" android:hint="MMS PORT" android:layout_below="@id/proxyURL" android:imeOptions="actionDone"/&gt; &lt;Button android:id="@+id/chooseImage" android:layout_width="fill_parent" android:layout_height="40dp" android:layout_marginTop="30dp" android:background="@drawable/rounded_button" android:text="PICK IMAGE" android:layout_below="@id/port"/&gt; &lt;Button android:id="@+id/sendButton" android:layout_width="fill_parent" android:layout_height="40dp" android:layout_marginTop="30dp" android:background="@drawable/rounded_button" android:text="SEND" android:layout_below="@id/chooseImage"/&gt; &lt;TextView android:id="@+id/emptyTV" android:layout_width="fill_parent" android:layout_height="30dp" android:layout_below="@id/sendButton"/&gt; </code></pre> <p> </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