0
我在android中製作一個應用程序,我試圖做到這一點,當你點擊一個按鈕時,它會打開一個你選擇的電子郵件應用程序(即時通訊使用Gmail)和自動組成一個電子郵件,我怎麼讓這個發送地址已填入>創建電子郵件,發送地址已經填寫在android
這是我的代碼
public void send(View v){
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/plain");
startActivity(emailIntent);
}
你爲什麼用你甚至不使用參數傳遞...? – JoxTraex 2013-04-05 00:12:26