我正在使用以下代码从我的应用程序发送电子邮件,但问题是电子邮件应用程序已打开,我的主应用程序已关闭,所以问题是什么。
先谢谢。
我的代码: -
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/plain");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"Test");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,"This is Email From Test Application");
startActivity(Intent.createChooser(emailIntent, "Email:"));
答案 0 :(得分:0)
我通过在onClick监听器中写入来检查你的代码。实际上,电子邮件客户端正在打开,你的活动转到onPause()。当你点击它回到它发起的活动。我看不到应用程序实际关闭,除非你在ur活动中的onPause()或onStop()中给出了finish()。