特別なwhatsappユーザーのためにchat_textを編集テキストに入力する意図はありますか? 私はこれを特定のユーザーのチャット画面を開こうとしましたが、edittextのextra_textを埋めていません。Whatsappへの意向特別メッセージとの特定の連絡のためのチャット
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);