我正在开发一个演示,我希望通过微信发送消息。 我使用下面的代码向微信联系人发送消息。
Intent intent1 = new Intent(Intent.ACTION_SEND);
intent1.setType("text/plain");
String title = " this is message ";
intent1.setPackage("com.tencent.mm");
intent1.putExtra(Intent.EXTRA_TEXT,title);
intent1.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent1);
使用此特定代码,我可以通过手动选择联系人来发送消息。
我可以自动完成整个过程并从后台发送消息吗?如果需要Root