how i change my keypad for type mail-id?

Karnesh_Prabhu

I have an EditText box in my android app, and when I click on it to input something, the default input languange is in normal keypad. Can I change it to edit for email-id?

i want @ and .com in my keyboard while entering mail-id .

when i try to use maildId.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS); it show error Fatal exception .

user5421769

You can use input type as:

            <EditText

                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="@string/email"
                android:inputType="textEmailAddress"
              />

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I change my IMAP e-mail address in Outlook and retain all my emails and folders?

From Dev

How to change Shift + <Keypad Key> behavior?

From Dev

how can i change fontcolor and font type of my listview

From Dev

how can i change fontcolor and font type of my listview

From Dev

How can I change my own user ID?

From Dev

How can I fix my program, it always show TypeError no matter how I change the type of the object?

From Dev

How do I change my column type to interval in my Rails migration?

From Dev

How do I change my previously saved List type to serialize into an Array type

From Dev

How do I change a str() type to make my program know I am talking about an object?

From Dev

How to Type Multilingual Characters in Windows Mobile Device by Device Keypad

From Dev

how to change the from attribute to my email in mail() function

From Dev

BigQuery: How can I change the type of one of my column from INTEGER to STRING?

From Dev

how did I get onscreen keypad support in codenameone

From Dev

My User_ID miration says interger not integer. How do I change it?

From Dev

How do I change the PCI device ID of my graphics card in the system? (to install Quadro driver on a GeForce)

From Dev

How does composing with id change type

From Dev

How does composing with id change type

From Dev

How can I automatically forward an e-mail and change sender?

From Dev

How do I change the chat and mail clients in the indicator area?

From Dev

How can I change the from address in *nix mail globally?

From Dev

How can I change the icon in Thunderbird's "New Mail" popup?

From Dev

How can I change outgoing mail configuration in Laravel?

From Dev

SendGrid incoming mail webhook - how do I secure my endpoint

From Dev

How can I add an image header to my php mail form?

From Dev

How can I find my local mail spool?

From Dev

SendGrid incoming mail webhook - how do I secure my endpoint

From Dev

How do I deliver an email stuck in my Postfix mail queue?

From Dev

How Can I hide part of my E-mail Address

From Dev

How do i read a special type of mail in a network share

Related Related

  1. 1

    How can I change my IMAP e-mail address in Outlook and retain all my emails and folders?

  2. 2

    How to change Shift + <Keypad Key> behavior?

  3. 3

    how can i change fontcolor and font type of my listview

  4. 4

    how can i change fontcolor and font type of my listview

  5. 5

    How can I change my own user ID?

  6. 6

    How can I fix my program, it always show TypeError no matter how I change the type of the object?

  7. 7

    How do I change my column type to interval in my Rails migration?

  8. 8

    How do I change my previously saved List type to serialize into an Array type

  9. 9

    How do I change a str() type to make my program know I am talking about an object?

  10. 10

    How to Type Multilingual Characters in Windows Mobile Device by Device Keypad

  11. 11

    how to change the from attribute to my email in mail() function

  12. 12

    BigQuery: How can I change the type of one of my column from INTEGER to STRING?

  13. 13

    how did I get onscreen keypad support in codenameone

  14. 14

    My User_ID miration says interger not integer. How do I change it?

  15. 15

    How do I change the PCI device ID of my graphics card in the system? (to install Quadro driver on a GeForce)

  16. 16

    How does composing with id change type

  17. 17

    How does composing with id change type

  18. 18

    How can I automatically forward an e-mail and change sender?

  19. 19

    How do I change the chat and mail clients in the indicator area?

  20. 20

    How can I change the from address in *nix mail globally?

  21. 21

    How can I change the icon in Thunderbird's "New Mail" popup?

  22. 22

    How can I change outgoing mail configuration in Laravel?

  23. 23

    SendGrid incoming mail webhook - how do I secure my endpoint

  24. 24

    How can I add an image header to my php mail form?

  25. 25

    How can I find my local mail spool?

  26. 26

    SendGrid incoming mail webhook - how do I secure my endpoint

  27. 27

    How do I deliver an email stuck in my Postfix mail queue?

  28. 28

    How Can I hide part of my E-mail Address

  29. 29

    How do i read a special type of mail in a network share

HotTag

Archive