我的应用程序可以生成我想要共享的 CSV 文件。我正在使用 MIME type text/comma_separated_values/csv
,但是当我发送Intent
选择器时没有显示,我猜我的设备不知道如何处理文件。我应该使用哪种类型?
这是我的代码:
Uri csv = lh.createDailyCSV();
if(csv == null){
Toast.makeText(this, getString(R.string.error_creating_csv), Toast.LENGTH_LONG).show();
}
else{
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/comma_separated_values/csv");
sharingIntent.setData(csv);
startActivity(Intent.createChooser(sharingIntent, getResources().getText(R.string.send_to)));
}
我在我的清单中声明:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/comma_separated_values/csv" />
</intent-filter>
我得到了例外
03-12 12:19:23.430: E/ActivityThread(24011): Activity com.android.internal.app.ChooserActivity has leaked IntentReceiver com.android.internal.app.ResolverActivity$1@412fc920 that was originally registered here. Are you missing a call to unregisterReceiver()?
我已经阅读了此异常,当Chooser中没有或仅1个选项时就会发生这种异常。
[编辑]
我更改了将数据附加到 Intent 的方式。而不是sharingIntent.setData(csv) 我使用:
sharingIntent.putExtra(Intent.EXTRA_STREAM, csv);
现在选择器工作正常,但如果我尝试通过电子邮件发送文件,我会收到错误消息:无法显示文件。
[/编辑]