Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to send Emails using android intent. Every thing is working well except when choosing email app to send email with, in the send to field getting null value, although I check for null values but seems I cannot detect when a string is null. Can anybody help me solve this.

if (emailAddress[0]!=null && !emailAddress[0].isEmpty()) {
                Intent intent = new Intent(Intent.ACTION_SEND);
                intent.setType("text/plain");
                intent.putExtra(Intent.EXTRA_EMAIL, emailAddress);
                intent.putExtra(Intent.EXTRA_SUBJECT,
                        getResources().getString(R.string.email_sub));
                // intent.putExtra(Intent.EXTRA_TEXT, "I'm email body.");

                startActivity(Intent.createChooser(intent, "Send Email"));
share|improve this question
I don't think the !emailAddress[0].isEmpty() is necessary... I could be wrong though... – TronicZomB Mar 22 at 12:45
1  
use this .. public static boolean isNotNullNotEmptyNotWhiteSpaceOnlyByJava( final String string) { return string != null && !string.isEmpty() && !string.trim().isEmpty(); } – itsrajesh4uguys Mar 22 at 12:46

6 Answers

try to use this syntax its detect null and empty string

if(!TextUtils.isEmpty(emailAddress[0]))
share|improve this answer

Check the String with equals() or equalsingorecase();

hope this will help you ...

have you tried like this ???

String[]  emailAddress = new String[10]; 

          emailAddress[0]="asdfasdfasdfasdf";

          if (emailAddress[0]!=null && !emailAddress[0].isEmpty())
          {
              System.err.println("asddddddd  " +emailAddress[0] );
          }
share|improve this answer
Tryed equals() but did not work – Bozidar Prcovski Mar 22 at 12:47
stackoverflow.com/questions/2920525/… have a look at this – itsrajesh4uguys Mar 22 at 12:48

You can use TextUtils.isEmpty(CharSequence str) method to detect if String is empty or null

share|improve this answer

TextUtils.isEmpty(charSequence char) is used for null String if it don't work then check if(emailAddress != null) because emailAddress[0] position value is null then your array is also null.

share|improve this answer

it might help you..

you can use any from below 2

if (emailAddress[0].toString().equals(""))

or

if (emailAddress[0].toString().length() > 0)
share|improve this answer
.toString() was the part that was making all the problems.. thanks – Bozidar Prcovski Mar 22 at 13:20

The string may not be null. AFAIK Intent.EXTRA_EMAIL takes String array as second argument.

Try this.

String[] addressArray = {"add1@mail.com", "a2@mail.com"};

//some lines...

intent.putExtra(Intent.EXTRA_EMAIL, addressArray);
share|improve this answer
The OP is passing a String[] as the second parameter. – jprofitt Mar 22 at 13:09
@jprofit My bad. I guess I expected to see emailAddresses or emailAdressArray – kaya Mar 22 at 13:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.