2009-11-26 330 views

回答

4

您可以使用下面的代码在新的活动启动动作ACTION_SENDTO

Intent intent = new Intent(Intent.ACTION_SENDTO, 
          Uri.fromParts("mailto", "[email protected]", null)); 
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
context.startActivity(intent); 
0

你可以使用HTML语法和嵌入HTML链接到你的应用程序。

我不是100%确定它可以与android一起工作,但我看不出有什么理由不起作用。

See the example here

希望这有助于 皮特

相关问题