我正在制作推文按钮以将定义的消息发送给预定义的用户。
此代码仅将推文发送到我的墙上当我发推文时如何设置接收器?
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setComponent(targetComponent);
String intentType = (targetComponent.getClassName().contains("com.twidroid")) ?
"application/twitter" : "text/plain";
intent.setType(intentType);
intent.putExtra(Intent.EXTRA_TEXT, "@victim Spacemarine has voted for the sake of Emperor! #becounted");
this.startActivity(intent);
我的结果
但它像我想要的那样进入我的墙壁而不是受害者的墙壁