我有一個Android應用程序,通過它我可以成功地更新Twitter狀態。我正在使用它來分享鏈接到顯示圖像的網頁。我認爲,與instagram一樣,以推文的形式縮小預覽效果併發布推文會很好。我如何將此圖片與我的推文一起上傳?Android的twitter4j上傳圖像
10
A
回答
43
我有相同的要求,有時候回來,最後來的功能可能會幫助你。
/**
* To upload a picture with some piece of text.
*
*
* @param file The file which we want to share with our tweet
* @param message Message to display with picture
* @param twitter Instance of authorized Twitter class
* @throws Exception exception if any
*/
public void uploadPic(File file, String message,Twitter twitter) throws Exception {
try{
StatusUpdate status = new StatusUpdate(message);
status.setMedia(file);
twitter.updateStatus(status);}
catch(TwitterException e){
Log.d("TAG", "Pic Upload error" + e.getErrorMessage());
throw e;
}
}
注:若要使用此,請確保你有我用twitter4j-core-2.2.5.jar這個
相關問題
- 1. 從android與Twitter4j上傳圖片到Twitter
- 2. 如何使用twitter4j將圖像和狀態上傳到Twitter
- 3. Android Firebase多圖像上傳
- 4. 無法上傳圖像android
- 5. 在android上的FTP圖像上傳
- 6. 在Twitter4j上混淆Relogin Android
- 7. 在android上批量上傳圖像
- 8. 在Android上通過FTP上傳圖像
- 9. Android |上傳帶有參數的圖像
- 10. Android的圖像上傳問題
- 11. Android的多上傳與圖像列表
- 12. 的Android上傳圖像AWS-調整
- 13. 在Android中上傳的文件/圖像
- 14. 從Android上傳圖像到服務器 - 上傳圖像的僅部分
- 15. Android上的圖像上的圖像
- 16. Android上傳服務在json數組中的上傳圖像
- 17. 上傳圖像
- 18. 上傳圖像
- 19. 上傳圖像
- 20. 上傳圖像
- 21. 上傳圖像
- 22. 上傳圖像
- 23. Android的twitter4j - 如何分享遠程圖像?
- 24. 將圖像從Android上傳到Facebook沒有Facebook的圖像
- 25. 用android上傳的圖像替換默認圖像
- 26. RuntimeException:當上傳圖像到twitpic在android
- 27. Android:如何從SD卡上傳圖像
- 28. Android開發圖像上傳損壞
- 29. 從Android上傳圖像到WCF服務
- 30. Android:將圖像上傳到mysql
嘗試最新的jar文件此更新的twitter4j罐子http://stackoverflow.com/questions/17093499/how圖像到推特的Android/20633178#20633178 – Prachi