I'm working on an Android app and need to email to various users. Currently I have an 'EditText' which is configured as:
android:inputType="textEmailAddress"
Once a button is pressed an email is sent to the address specified in this field. But I would to create a multi address input list. Is there a way to do it without change the 'EditText' to multiple lines and parsing the string myself?
Googled it but could not find a solution. Any suggestions?
Thanks in advance.