我尝试在我的应用程序中获取消息和电话号码,然后向该号码发送消息,我想通过 Viber 应用程序发送此消息。我可以使用此代码发送消息:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(android.content.Intent.EXTRA_TEXT, "test test test");
intent.setpackage("com.viber.voip");
startActivity(intent);
如何将电话号码发送到 Viber?