定義済みのメッセージを定義済みのユーザーに送信するためのつぶやきボタンを作成しています。
このコードはツイートを自分のウォールにのみ送信します。ツイートするときにレシーバーを設定する方法は?
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);
私の結果
しかし、それは私が望むように犠牲者ではなく私の壁に行きます