我在应用开发中遇到了一个奇怪的问题。
在我的应用中的某个时刻,它会调用Intent(Intent.ACTION_SEND)来启动Gmail, 并出现“使用完成操作...”对话框。
即使我检查底部的默认框并选择Gmail,我的应用程序下次要求时也是如此 Intent,完成动作使用对话框不断出现。
即使我已选择要启动的默认应用程序,我也无法让它消失。
任何想法为什么?
意图的例子
private void do_gmail_failover() { // If GMailSender fails, revert back to old method
Intent email_pic = new Intent(Intent.ACTION_SEND); // Commence choose photo action // Used to be ACTION_SEND
email_pic.putExtra(Intent.EXTRA_EMAIL, Recipients); // Inserts Digital Signature address in recipient
email_pic.putExtra(Intent.EXTRA_SUBJECT, DIGIJOB); // Inserts Track Number automatically in subject
email_pic.putExtra(Intent.EXTRA_STREAM, uriTarget); // Attaches image to Gmail
email_pic.setType("image/jpeg"); // Converts image to jpeg
startActivityForResult(email_pic, RETURN_ACTIVITY);
overridePendingTransition(R.anim.fadein, R.anim.fadeout);
LOGCAT.DEBUG("do_gmail_failover", "Inside do_gmail_failover function");
}