如何在Android中附加文件? (对于傻瓜)

时间:2011-10-07 21:37:54

标签: android file

有人可以帮我了解如何将图像/音频附加到我的应用程序中吗?这个文件将被发送到我的服务器。

我认为简单的方法是启动Android Intent for Android,它会向我显示一个弹出窗口,其中所有应用程序都支持我想要的类型文件..我想这给了我文件路径。

我真的不明白这个,请有人给我一个指南吗? THX。

1 个答案:

答案 0 :(得分:0)

检查出来:

/* Create the Intent */
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);

/* Fill it with Data */
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"to@email.com"});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Text");

/* Send it off to the Activity-Chooser */
context.startActivity(Intent.createChooser(emailIntent, "Send mail..."));

然后看到这篇文章:

Trying to attach a file from SD Card to email

它应该可以帮助您了解如何在实际将某些内容附加到电子邮件之前创建电子邮件意图。祝你好运。