what I mean by the title is by pressing enter from the keyboard instead of pressing a button.
I want the user to have another option of confirming the password from the keyboard
Edit:grammar fixed
Related
I have web app in Adnroid. I have two submit buttons inside. When I press go button on the keyboard one of then is always selected. Is there a way to manage which button is selected. How to determine which is the default submit button?
Pressing the GO button should work similar to pressing enter on a computer keyboard. So the GO button is just submitting the form, it shouldn't be triggering any specific button on the form.
Phonegap input type text show Go button on soft keyboard, I have multiple text boxes so want Next button on keyboard so user can move easily and on last input want Go so user can press to submit form.
And on Android kitkatt keyboard top bar also not displaying Next|Prev buttons.
Having a "Next" button instead of "Go" for input type="text" would not be possible with Android as of now.
Android will always display "Go" button for form input fields irrespective of the position of the field you are at in the form. "Go" is basically reflecting the same behavior as of an "Enter" button on a normal browser & keyboard.
There are two possible hacks to come closer to what you need (still won't change "Go" to "Next" but will help "Go" act as "Next") -
Hack 1 - Hijack Enter key event & move focus to next fields
Like I mentioned the "Go" key replicates the "Enter" key, you can capture the enter key event using JavaScript & make it move focus to next fields in form until its your last field. Once last field reaches you can allow it to act as enter. So basically Go will keep moving focus to next fields until its your last field & then will submit the form.
I have answered a solution to a similar requirement here - How to trigger a Tab when user presses Enter, you can try implementing the same in your app.
DEMO LINK - http://codepen.io/nitishdhar/pen/Gxbhm
Hack 2 - Force form validation & move focus to next invalid fields
If you want to prevent users from submitting the form, you can put required validations on the form using java-script & if some field is not filled, upon pressing "Go" the focus of the cursor can be brought to the next "not filled" field. So in a way giving the impression of - "Pressing Go & moving to next field to be filled"
Try this plugin - http://jqueryvalidation.org/ this behaves in the way explained i.e moves focus to the next required or invalid field.
Also I think some android versions show some tab key on the keyboard to move between fields, buts its not Next.
All the best.
I have an application where user needs to input some text. When I click the editText area a keyboard appears and then I input the text after which I have to press the "back" key on my phone to hide the keyboard and then press the submit button which is getting annoying.
How do I get that "ok" button that does it for me which I am used to? I have Android version 2.3.6 on my phone. Is this even available at this API level ?
Use onEditorActionListener http://developer.android.com/reference/android/widget/TextView.OnEditorActionListener.html on your EditText.
Also see: EditorInfo http://developer.android.com/reference/android/view/inputmethod/EditorInfo.html
is there any way to define how far a view is moved up when the soft keyboard appears? In my case i have a Username and a Password EditText close to the bottom of my view, when the user now clicks on the Username field the soft keyboard appears and the View is automatically moved up so that you can see the Username EditText. But then the user is not able to see the Password EditText, which is kindof counter-intuitive. When the user once klicked on the Password Field and then goes back to the Username Field everything looks like i want it to look.
Im am using Android 2.3.3 API Level 10
I did add
android:windowSoftInputMode="adjustPan"
in my activity since i don't want the view to resize when the keyboard appears.
without keyboard:
with keyboard and Username focus:
after click on password - also desired behaviour after click on Username:
Is there any way out for mapping the Done button to the button on the screen in Android. What I want is that I have one login screen user enters username and presses the next button on the soft keyboard which brings the focus on password field. AFter entering password when the user presses done button then the action which is performed on login button should be called.
Let me know if this is possible.
In your layout file, you can specify the focus order using attributes like nextFocusDown. If you have the focus order configured properly, hitting next should automatically take you to the next focusable element.
You can also add a KeyListener to the edit text to listen for the next key and set the focus accordingly.