0
私は、HTMLで生成されたページをWhatsApp &電子メールに共有するためのオプションをアプリケーションから作成したいと思いますが、書式設定で共有できないようですワーキング)。Android - WhatsApp&EmailへのHTMLの共有
WhatsAppとEmailでCSSを使用してテーブルとHTMLを共有できますか?
もう1つのことは、共有するアプリを共有するアプリを制限することができるかどうかをポップアップで尋ねるときです。 WhatsApp &電子メールはHTML形式のデータを取得しますが、SMSはプレーンテキストを取得しますか?
私は現在使用しているコードは次のとおりです。事前に
dis = Html.fromHtml(html).toString();
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/html");
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Share With?");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, dis);
if (sharingIntent.resolveActivity(this.getPackageManager()) != null)
{
this.startActivity(Intent.createChooser(sharingIntent, "Share With?"));
}
else
{
toast("No Sharable Apps Found!");
}
感謝。
大丈夫おかげのようなコードを見て –