2012-12-17 47 views
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); 

我的結果 enter image description here

,但它關係到我的牆不是受害者,因爲我想

回答

1

如果用戶跟隨你,你就可以給他一個直接留言。否則,唯一的解決方案就是您在問題中使用的解決方案。

+0

不要使用twit所以我不知道,這讓我很多壓力:)謝謝 – Yarh

相關問題