在我的应用程序中,我想使用 html 文件附加到电子邮件客户端。所以我想在添加为附件之后在运行时访问和更新这个 html 文件。有可能吗?如果是,请任何人帮助我。
我已经尝试在资产文件夹中创建了一个 html 文件,之后我将其添加为附件,但现在我想在运行时更新它。我试过了,但我没有。
代码
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/html");
//attachment
Uri uri = Uri.fromFile(new File("file:///android_asset/YFG_Login.html"));
emailIntent.putExtra(android.content.Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(emailIntent, "Email:"));
谢谢,
纳雷什