-1
votes
0answers
16 views

edit text to accept URL

i have edit text and it has to accept URL only. changing input type to textUri not worked <EditText android:id="@+id/editText2" android:layout_width="match_parent" ...
0
votes
1answer
49 views

Avoid future dates when validating birthdates

I'm trying to Birthdate in the form of "MM/DD/YYYY", and I want to consider "future" dates to be invalid. Here's my code so far: final Calendar c = Calendar.getInstance(); mDay = ...
2
votes
1answer
62 views

How to determine if any fields associated with an activity have had their errors set?

I am performing some input validation in an onClickListener(). While I'm okay with my validation methods I'm concerned about the way I am determining if any of the validated inputs have errors. For ...
0
votes
2answers
42 views

onKey and exceptions

I'm building an Android application and I'm facing 2 problems. I'm currently using the onKey method to parse a textbox to fetch the user typed data. This is working fine but if the user choose to let ...
0
votes
1answer
80 views

How to set error on dynamically added EditText without id?

I have a dynamically added EditTexts to my layout. They don't have id's. This EditTexts are all required and cannot be left empty. I have this function for validation: private boolean validate() { ...
3
votes
3answers
349 views

focus on second edittext only if first is non-empty android

Currently I have two edit-text,suppose I want to make validation for empty edittext check.What is better way for runtime validation. My code is; final EditText ev1 = (EditText) ...
1
vote
1answer
329 views

Android: Accept all special characters in regex

I'm validating the Edittext with regex by allowing particular characters in that i need to allow all the special characters to enter in edit text. for allowing alpha and numbers im using the code ...
0
votes
3answers
346 views

AlertDialog EditText input validation does not work

I created a Dialog with a TextEdit as a number input to convert it to a double value. I want to prevent an exception by checking, if the TextEdit input is empty but it always jumps to the else ...
0
votes
1answer
270 views

How to set error message if user key in wrong input in EditText?

I've an application where there are EditText boxes. I've set validatin for the boxes of what inout the user should key in. But I want to set error message if he keys in wrong input which I'm not sure ...
3
votes
2answers
3k views

Android form validation UI library

There is iOS US2FormValidator library for user input validation (see the picture below). I think that library is better than the default of just popping an alert when something doesn't validate. ...
0
votes
0answers
126 views

Android Search Dialog how to ensure it is always visible?

I have an Android tab widget app, one of my tabs is a Search Dialog. The problem is that after the search is completed, sometimes the search dialog goes away and there is no way to get it back other ...
0
votes
2answers
160 views

Android Search Dialog how do I restrict input to numbers only?

I'm building a zip code search page for my Android app so I want to force the user to enter 5 numeric digits. I've searched everywhere and I don't see any way to for the Search Dialog. I know that ...
1
vote
3answers
1k views

How to determine if an input in EditText is an integer?

Hi I am a newbie in Android Programming. I am trying to build an activity which includes an edittext field and a buttom. When user type in an integer, the button will lead them to the next activity. ...
1
vote
3answers
417 views

Disable buttons of android keypad

i am trying to disable some keys of keypad in android. E.g when numeric keypad is opened. i want to disable buttons like +,- etc. How can i do that. Regards
0
votes
2answers
124 views

How to set input criteria on android form

I have very simple question. In my application I have some TextEdit fields. I want the user to fill all the TextEdit fields and then click on finish button. But after the finish button is pressed I ...
8
votes
7answers
2k views

Form validation library for Android?

Is there any mature form validation API / library for Android? I've found http://code.google.com/p/android-binding/ but it seems that is under heavy development. UPDATE: Just to clarify my question. ...
0
votes
0answers
866 views

android edittext - how to limit input to latin characters only?

I have a form in my android application with an EditText on it. I need to limit input into this field to latin characters and digits only ([a-z,A-Z,0-9]) and do not allow any national characters. How ...
0
votes
2answers
4k views

press “.” many times (validate ip address in EditText while typing)

I have the following EditText: <EditText android:id="@+id/ip" android:layout_width="200dip" android:layout_height="wrap_content" android:singleLine="true" android:inputType="numberDecimal"> ...
33
votes
3answers
11k views

How to display input errors in popup?

I want to show all my validation error's of EdiText fields in a popup as shown in below image: As far as I know Android has drawables: 1) popup_inline_error.9.png 2) ...
2
votes
2answers
2k views

Allow only selected charcters based on regex in an EditText

I want to allow users only to type certain characters based on the a regex in my android applications. How do I achieve it?