メールを送信していますが、ユーザーがメール コンポーザーから戻ってきたときに別のアクティビティに移動する必要があります。これを達成するにはどうすればよいですか?
ここに私のコード、//メールを送信
String prestartTypeString = prestartType;
String to = "juanman234@gmail.com";
String subject = "Pre-Start - "+prestartTypeString;
String message = fullName+" has sent you a Pre-Start checklist for equipment "
+registrationNumber+".\n" + "Please find PDF report attached.
\n\nNeed help viewing this report\nEmail us anytime at\nhello@tiks.com.au";
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{ to});
email.putExtra(Intent.EXTRA_SUBJECT, subject);
email.putExtra(Intent.EXTRA_TEXT, message);
//attachment
Uri uri = Uri.fromFile(new File(Environment.getExternalStorageDirectory(),
"generato.pdf"));
email.putExtra(Intent.EXTRA_STREAM, uri);
//need this to prompts email client only
email.setType("message/rfc822");
startActivity(Intent.createChooser(email, "Choose an Email client :"));
setResult(RESULT_OK, email);
確認しました
startActivityForResult();
しかし、これがそれを行う方法であるかどうかは明確ではなく、機能させていません
では、ユーザーがメール インテントから戻ったときに関数をトリガーする方法は?
ありがとう