how to add new line to email contents?

后端 未结 3 1698
暗喜
暗喜 2020-12-11 07:42

I want to Place content like

  1. Name
  2. Pass
  3. Email

to the email content. how to do this...?

I tried this but not working.

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-11 07:57

    Why not use a StringBuilder to create all your content and then add it to your intent ?

    StringBuilder sb;
    
    sb.append("First Name : ");
    sb.append(fname.getText().toString());
    sb.append('\n');
    sb.append("Last Name : ");
    sb.append(lname.getText().toString());
    sb.append('\n');
    sb.append("Email : ");
    sb.append(email.getText().toString());
    
    emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,sb);
    

提交回复
热议问题