android如何向特定用户发推文?

时间:2012-12-17 12:26:22

标签: android twitter

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

此代码仅向我的墙发送推文 我推文时如何设置接收者?

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

我的结果 enter image description here

但它不是我想要的受害者而是我的墙。

1 个答案:

答案 0 :(得分:1)

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