0

我正在制作推文按钮以将定义的消息发送给预定义的用户。

此代码仅将推文发送到我的墙上当我发推文时如何设置接收器?

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);

我的结果 在此处输入图像描述

但它像我想要的那样进入我的墙壁而不是受害者的墙壁

4

1 回答 1

1

如果用户关注您,您将能够向他发送直接消息。否则,您拥有的唯一解决方案就是您在问题中使用的解决方案。

于 2012-12-18T17:52:45.137 回答