我希望将HTML分享为文件,而不是文本形式。首先,我需要在手机上生成一个保存的文件以便稍后发送吗?
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/html");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(meuHtml));
startActivity(Intent.createChooser(sharingIntent,"Share using"));
答案 0 :(得分:0)