我是 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;
}