I want to make a input pin code input box as per below image .i have used four edittext for it but my problem is that i m unable to move the cursor from one edittext to other and vice-versa.Please help me on this.enter image description here

link|improve this question

0% accept rate
What do you mean by "move the cursor from one edittext to other"? – Paresh Mayani Nov 2 '11 at 9:46
like when user type in one character/number in the edit text so the cursor should jump to next edittext. – user853341 Nov 2 '11 at 9:57
feedback

2 Answers

I think something like this will do what you want:

<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" >


</EditText>
 <EditText
    android:id="@+id/editText2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" >


</EditText>
<EditText
    android:id="@+id/editText3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" >


</EditText>
<EditText
    android:id="@+id/editText4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" >


</EditText>

Or do you want to auto-jump from one EditText to another when filled?

link|improve this answer
yes i want to autojump from one edittext to another after filled. – user853341 Nov 2 '11 at 9:51
feedback

what do you mean you are unable to "move the cursor from one edittext to other and vice-versa" ??

Like when you type in one character/number in the edit text so the cursor should jump to next edittext?

If so try getFocus() with implementation a TextWatcher for the EditText, it has a callback that gets called after every letter typed in.

link|improve this answer
can i use same textwatcher for all edittext in that case how could i set the cursor position? – user853341 Nov 2 '11 at 10:06
the textWatcher knows which view/edittext called him, so just get view.getId() and make switch-case code alias "if (id = 1) edittext2.getfocus(); if (id=2) edittext3.getfocus(); etc. – Alone89 Nov 2 '11 at 10:23
i will try this out thanks a lot – user853341 Nov 2 '11 at 10:25
np, if it doesn't work write it here so maybe someone else will save a time knowing that this is not the solution ;-) On the other hand dont forget to mark as the best answer if it works :)) – Alone89 Nov 2 '11 at 10:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.