我是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;
}
答案 0 :(得分: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
是否为空