I am using a web view in an android app. I want to replace content_from_whatsapp_url
to my a tag MY-MESSAGE
. Could you help me please?
HTML:
<a class="btn_whatsapp btn_prop_whatsapp" href="whatsapp://send?text=MY-MESSAGE" data-action="share/whatsapp/share">Share</a>
Adroid:
whatsappIntent.putExtra(Intent.EXTRA_TEXT, content_from_whatsapp_url);
Intent whatsappIntent = new Intent(Intent.ACTION_SEND);
whatsappIntent.setType("text/plain");
whatsappIntent.setPackage("com.whatsapp");
whatsappIntent.putExtra(Intent.EXTRA_TEXT, content_from_whatsapp_url);
startActivity(whatsappIntent);