我通過我的應用程序發送郵件使用此代碼:通過郵件與依戀發送郵件,而不選擇器
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_EMAIL, new String[] {"[email protected]"});
intent.putExtra(Intent.EXTRA_SUBJECT, "subject here");
intent.putExtra(Intent.EXTRA_TEXT, "body text");
Uri uri = Uri.parse("file://" + file_name+".jpg");
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "Send email..."));
這只是正常的,但我怎麼能做到這一點沒有Intent.createChooser,不要讓用戶選擇應用程序共享,並直接轉到Gmail應用程序,假設每個Android手機都有。
你想在回地面發送郵件/艾克這個http://stackoverflow.com/a/2033124 – Sree
沒有,只需打開Gmail應用程序的情況下直接選擇器 – Dim