*Hi Everyone, My question is simple but still did not find any answer for it, when i use the Android Intent.ACTION_SEND in my App with a pre-filled message, i get the chooser, and when select WhatsApp for example (or Viber相同的行为),我无法在与联系人共享之前修改文本。
所以我的问题是:如何在将预填消息发送给所选联系人之前对其进行编辑。
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "text");
startActivity(Intent.createChooser(shareIntent, "share Action"));
非常感谢!祝你今天过得愉快 *