2
我有以下代碼,它顯示了創建消息屏幕。使用意圖打開創建消息
String uri= "smsto:";
Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse(uri));
intent.putExtra("compose_mode", true);
startActivity(intent);
然而,當意圖被調用時,有人問我來自像短信,WhatsApp的,SKYPE等應用程序的列表中選擇是否有可能在我的應用程序直接打開的郵件,而不是要求用戶選擇一個選項?