Is there any intent to open chat screen for a specific whatsapp user with extra_text to be filled in edit text so user can just tap send to send message. i tried this it open chat screen for a specific user but it does not fill extra_text in edittext.
Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, body);
intent.setData(Uri.parse("smsto:" + phone));
intent.setPackage("com.whatsapp");
context.startActivity(intent);