There is a field that is ZIPCODE.when I click on it then it should be open softkeypad for numeric.is it possible.how??
Please help me.
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes you can do that in
XMLyou need to put in yourEditText:android:inputType="number"or in code you can do something like this on your edit text:editText.setInputType(InputType.NUMBER);Good luck!