2013-04-11 57 views

回答

-1

好的傢伙,我找到了解決辦法....

 ResponseList<Status> tweets = twitter.getHomeTimeline();  
for(Status s : tweets){ 
    Tweet temp; 
    if(s.isRetweet()){ 
     temp = new Tweet(s.getRetweetedStatus(),s.getUser().getName()); 
    } 
    else{ 
     temp = new Tweet(s); 
    } 
    tweetsPanel.add(temp); 
    tweetsPanel.add(Box.createRigidArea(new Dimension(0,2))); 
}