Android Images in Email using Intent -


I have a webview that displays html content brought from the server, it works great. But if I try to use the intent to send this content to someone via email, the rest email is displayed correctly in the email client but in an box the image is not displayed instead of "obj".

And when the same email is received, even then there are "obje" in the box for images Now I can open images by clicking on "obj"

What is the image in the email? It is possible to display

The images are part of html, not connected to the device.

I have searched but there is no other solution to solve my problem.

  intent = new intent (Intent.ACTION_SEND); I.setType ("text / html"); I.putExtra (Intent.EXTRA_SUBJECT, this.news.getNewsTitle ()); I.putExtra (Intent.EXTRA_TEXT, Html.fromHtml (this.htmlContentDetails)); Try {startActivity (Intent.createChooser (i, "sending mail ...")); } Hold (android.content.ActivityNotFoundException e) {toast. Maketext (This, "No Email Client Is Installed.", Toast. LNNGHHORT). Show (); }  


Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

lua - HowTo create a fuel bar -