Html.fromHtml not working with bold text in body while share intent in email
问题 String mailContent = "<b>boldText:</b>" I tried below also but not working. String mailContent = "<strong>boldText:</strong>" Email intent. Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("text/html"); sendIntent.putExtra(Intent.EXTRA_SUBJECT, getResources().getString(R.string.slide3_text1)); sendIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(mailContent)); startActivity(Intent.createChooser(sendIntent, "Send Mail")); Please check this code not showing bold text in