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

android如何向特定用户发送推特?,android,twitter,Android,Twitter,我正在制作tweet按钮,将定义的消息发送给预定义的用户 这个代码只发送推特到我的墙上 我发tweet时如何设置接收器 Intent intent = new Intent(Intent.ACTION_SEND); intent.setComponent(targetComponent); String intentType = (targetComponent.getClassName().contains("com.twidroid")) ?

我正在制作tweet按钮,将定义的消息发送给预定义的用户

这个代码只发送推特到我的墙上 我发tweet时如何设置接收器

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);
我的成绩


但它会传到我的墙上,而不是我想要的受害人的墙上

如果用户跟踪你,你就可以直接给他发送消息。否则,您唯一的解决方案就是您在问题中使用的解决方案。

不要使用twit,所以我不知道,它给我带来了很大的压力:)谢谢