0
我正在發送推文按鈕以將預定義的消息發送給預定義的用戶。android如何向特定用戶發送推文?
此代碼只發送鳴叫到我的牆 如何設置接收者,當我鳴叫?
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所以我不知道,這讓我很多壓力:)謝謝 – Yarh