0

我是 Android 的初学者,想获得 Twitter 趋势,但在趋势中获得一个空值。我不明白我在哪里犯了错误。

List<Trends> list; Trends trends; private Twitter mTwitter;

public  List<Trends>getDailyTrends(Date date, boolean excludeHashTags){
    try{
        list = mTwitter.getDailyTrends(date, excludeHashTags);
        Log.d("ab to aaja<><><><><>", ""+list);
    }catch (TwitterException e)
    {
        e.printStackTrace();
    }
    return list;

}
4

1 回答 1

0

试试这个 :

   public  List<Trends>getDailyTrends(Date date, boolean excludeHashTags){
        List<Trends> auxList = new ArrayList<Trends>;
        try{
            auxList = mTwitter.getDailyTrends(date, excludeHashTags);
            Log.d("ab to aaja<><><><><>", ""+list);
        }catch (TwitterException e)
        {
            e.printStackTrace();
        }
        return auxList;
    }

this.list = getDailyTrends(new SimpleDateFormat("yyyy-MM-dd").parse("2012-07-14"), true);

还要检查是否auxList不为空

于 2012-07-14T15:19:42.230 回答